summaryrefslogtreecommitdiffstats
path: root/drivers/mtd/nand/omap_elm.c
diff options
context:
space:
mode:
authorArnd Bergmann2015-12-18 14:15:17 +0100
committerBrian Norris2015-12-18 19:16:17 +0100
commitce7f28531fe05fcabc8ccff8b6dc9b4b296a811e (patch)
tree23a5c85f10458c4d1d7b226a3220cfbd8a244b01 /drivers/mtd/nand/omap_elm.c
parentmtd: bcm47xxnflash: really unregister NAND on device removal (diff)
downloadkernel-qcow2-linux-ce7f28531fe05fcabc8ccff8b6dc9b4b296a811e.tar.gz
kernel-qcow2-linux-ce7f28531fe05fcabc8ccff8b6dc9b4b296a811e.tar.xz
kernel-qcow2-linux-ce7f28531fe05fcabc8ccff8b6dc9b4b296a811e.zip
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@arndb.de> Signed-off-by: Brian Norris <computersforpeace@gmail.com>
Diffstat (limited to 'drivers/mtd/nand/omap_elm.c')
-rw-r--r--drivers/mtd/nand/omap_elm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/nand/omap_elm.c b/drivers/mtd/nand/omap_elm.c
index 235ec7992b4c..a3f32f939cc1 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;
}