mtd: omap_elm: print interrupt resource using %pr
Linux-MTD Mailing List
linux-mtd at lists.infradead.org
Tue Jan 12 15:59:17 PST 2016
Gitweb: http://git.infradead.org/?p=mtd-2.6.git;a=commit;h=ce7f28531fe05fcabc8ccff8b6dc9b4b296a811e
Commit: ce7f28531fe05fcabc8ccff8b6dc9b4b296a811e
Parent: 665d2c2848f14c0c2a2e89192bde9073c4d352f7
Author: Arnd Bergmann <arnd at arndb.de>
AuthorDate: Fri Dec 18 14:15:17 2015 +0100
Committer: Brian Norris <computersforpeace at gmail.com>
CommitDate: Fri Dec 18 10:16:17 2015 -0800
mtd: omap_elm: print interrupt resource using %pr
When CONFIG_LPAE is set on ARM, resource_size_t is 64-bit wide
and we get a warning about an incorrect format string for printing
the interrupt number in elm_probe:
drivers/mtd/nand/omap_elm.c: In function 'elm_probe':
drivers/mtd/nand/omap_elm.c:417:23: warning: format '%i' expects argument of type 'int', but argument 3 has type 'resource_size_t {aka long long unsigned int}' [-Wformat=]
This patch avoids the type mismatch by printing the interrupt as
a resource using the %pr format string.
Signed-off-by: Arnd Bergmann <arnd at arndb.de>
Signed-off-by: Brian Norris <computersforpeace at gmail.com>
---
drivers/mtd/nand/omap_elm.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/drivers/mtd/nand/omap_elm.c b/drivers/mtd/nand/omap_elm.c
index 235ec79..a3f32f9 100644
--- a/drivers/mtd/nand/omap_elm.c
+++ b/drivers/mtd/nand/omap_elm.c
@@ -414,7 +414,7 @@ static int elm_probe(struct platform_device *pdev)
ret = devm_request_irq(&pdev->dev, irq->start, elm_isr, 0,
pdev->name, info);
if (ret) {
- dev_err(&pdev->dev, "failure requesting irq %i\n", irq->start);
+ dev_err(&pdev->dev, "failure requesting %pr\n", irq);
return ret;
}
More information about the linux-mtd-cvs
mailing list