soc: ixp4xx: fix printing resources
authorArnd Bergmann <arnd@arndb.de>
Fri, 8 Nov 2019 08:43:06 +0000 (09:43 +0100)
committerArnd Bergmann <arnd@arndb.de>
Tue, 3 Aug 2021 08:05:01 +0000 (10:05 +0200)
commit8861452b2097bb0b5d0081a1c137fb3870b0a31f
treee7c63e52580f128b1cf629f33c116119c7b5b617
parent6ebeca342f96a7c371ed5fe53189dd56fe0c0330
soc: ixp4xx: fix printing resources

When compile-testing with 64-bit resource_size_t, gcc reports an invalid
printk format string:

In file included from include/linux/dma-mapping.h:7,
                 from drivers/soc/ixp4xx/ixp4xx-npe.c:15:
drivers/soc/ixp4xx/ixp4xx-npe.c: In function 'ixp4xx_npe_probe':
drivers/soc/ixp4xx/ixp4xx-npe.c:694:18: error: format '%x' expects argument of type 'unsigned int', but argument 4 has type 'resource_size_t' {aka 'long long unsigned int'} [-Werror=format=]
    dev_info(dev, "NPE%d at 0x%08x-0x%08x not available\n",

Use the special %pR format string to print the resources.

Fixes: 0b458d7b10f8 ("soc: ixp4xx: npe: Pass addresses as resources")
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
drivers/soc/ixp4xx/ixp4xx-npe.c