[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1264884670-28211-2-git-send-email-jkacur@redhat.com>
Date: Sat, 30 Jan 2010 21:51:09 +0100
From: John Kacur <jkacur@...hat.com>
To: linux-kernel <linux-kernel@...r.kernel.org>
Cc: Linus Torvalds <torvalds@...ux-foundation.org>,
Johannes Hirte <johannes.hirte@....tu-ilmenau.de>,
Kevin Winchester <kjwinchester@...il.com>,
Dave Airlie <airlied@...ux.ie>,
dri-devel <dri-devel@...ts.sf.net>,
Alex Deucher <alexdeucher@...il.com>,
Jerome Glisse <jglisse@...hat.com>,
Ingo Molnar <mingo@...e.hu>,
FUJITA Tomonori <fujita.tomonori@....ntt.co.jp>,
John Kacur <jkacur@...hat.com>
Subject: [PATCH] radeon_agp: Fix warning, format ‘%d’ expects type ‘int’, but argument 4 has type ‘size_t’
Fix warning by using %zu instead of %d for size_t
Signed-off-by: John Kacur <jkacur@...hat.com>
---
drivers/gpu/drm/radeon/radeon_agp.c | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/drivers/gpu/drm/radeon/radeon_agp.c b/drivers/gpu/drm/radeon/radeon_agp.c
index c9ad7f5..1c4e523 100644
--- a/drivers/gpu/drm/radeon/radeon_agp.c
+++ b/drivers/gpu/drm/radeon/radeon_agp.c
@@ -134,7 +134,7 @@ int radeon_agp_init(struct radeon_device *rdev)
int ret;
if (rdev->ddev->agp->agp_info.aper_size < 32) {
- dev_warn(rdev->dev, "AGP aperture to small (%dM) "
+ dev_warn(rdev->dev, "AGP aperture to small (%zuM) "
"need at least 32M, disabling AGP\n",
rdev->ddev->agp->agp_info.aper_size);
return -EINVAL;
--
1.6.0.6
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists