Messages in this thread Patch in this message |  | | | Date | Mon, 30 Jan 2012 19:08:16 -0800 | | From | Randy Dunlap <> | | Subject | [PATCH -next] mtd: fix nand/docg4.c printk format warnings |
| |
From: Randy Dunlap <rdunlap@xenotime.net>
Fix printk format warnings for resource_size_t:
drivers/mtd/nand/docg4.c:1277:4: warning: format '%x' expects type 'unsigned int', but argument 3 has type 'resource_size_t' drivers/mtd/nand/docg4.c:1277:4: warning: format '%x' expects type 'unsigned int', but argument 4 has type 'resource_size_t'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net> Cc: David Woodhouse <dwmw2@infradead.org> Cc: linux-mtd@lists.infradead.org --- drivers/mtd/nand/docg4.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) --- linux-next-20120130.orig/drivers/mtd/nand/docg4.c +++ linux-next-20120130/drivers/mtd/nand/docg4.c @@ -1273,8 +1273,9 @@ static int __init probe_docg4(struct pla virtadr = ioremap(r->start, resource_size(r)); if (!virtadr) { dev_err(dev, "Diskonchip ioremap failed: " - "0x%x bytes at 0x%x\n", - resource_size(r), r->start); + "0x%llx bytes at 0x%llx\n", + (unsigned long long)resource_size(r), + (unsigned long long)r->start); return -EIO; }
|  |