Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Arnd Bergmann and committed by
Brian Norris
ce7f2853 665d2c28

+1 -1
+1 -1
drivers/mtd/nand/omap_elm.c
··· 414 414 ret = devm_request_irq(&pdev->dev, irq->start, elm_isr, 0, 415 415 pdev->name, info); 416 416 if (ret) { 417 - dev_err(&pdev->dev, "failure requesting irq %i\n", irq->start); 417 + dev_err(&pdev->dev, "failure requesting %pr\n", irq); 418 418 return ret; 419 419 } 420 420