diff options
author | Randy Dunlap <randy.dunlap@oracle.com> | 2007-04-26 01:41:34 -0400 |
---|---|---|
committer | David Woodhouse <dwmw2@infradead.org> | 2007-04-26 02:28:58 -0400 |
commit | 06d63cc51d47f572009138a7f3ac34d95773405d (patch) | |
tree | 0ba138215753f967fd8a31af80a4b12534746fa0 | |
parent | f6449f4ece2bf283500bda73edcbea82f2cb3a1b (diff) |
[MTD] [MAPS] fix plat-ram printk format
drivers/mtd/maps/plat-ram.c:172: warning: format '%lx' expects type 'long unsigned int', but argument 4 has type 'resource_size_t'
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
-rw-r--r-- | drivers/mtd/maps/plat-ram.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/maps/plat-ram.c b/drivers/mtd/maps/plat-ram.c index 2b6504ecbbd1..894c0b271289 100644 --- a/drivers/mtd/maps/plat-ram.c +++ b/drivers/mtd/maps/plat-ram.c | |||
@@ -169,7 +169,8 @@ static int platram_probe(struct platform_device *pdev) | |||
169 | goto exit_free; | 169 | goto exit_free; |
170 | } | 170 | } |
171 | 171 | ||
172 | dev_dbg(&pdev->dev, "got platform resource %p (0x%lx)\n", res, res->start); | 172 | dev_dbg(&pdev->dev, "got platform resource %p (0x%llx)\n", res, |
173 | (unsigned long long)res->start); | ||
173 | 174 | ||
174 | /* setup map parameters */ | 175 | /* setup map parameters */ |
175 | 176 | ||