[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <1264966683-17992-2-git-send-email-jkacur@redhat.com>
Date: Sun, 31 Jan 2010 20:38:02 +0100
From: John Kacur <jkacur@...hat.com>
To: lkml <linux-kernel@...r.kernel.org>
Cc: Dan Nicholson <dbn.lists@...il.com>,
Dave Airlie <airlied@...ux.ie>,
FUJITA Tomonori <fujita.tomonori@....ntt.co.jp>,
Jerome Glisse <jglisse@...hat.com>,
Johannes Hirte <johannes.hirte@....tu-ilmenau.de>,
dri-devel <dri-devel@...ts.sf.net>,
Alex Deucher <alexdeucher@...il.com>,
Kevin Winchester <kjwinchester@...il.com>,
Linus Torvalds <torvalds@...ux-foundation.org>,
Ingo Molnar <mingo@...e.hu>, John Kacur <jkacur@...hat.com>
Subject: [PATCH 1/2] 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
- Fix spelling mistake, "to" should be "too".
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..f58c5f4 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 too 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