parisc: Use proper printk format for resource_size_t
authorKrzysztof Kozlowski <krzk@kernel.org>
Fri, 3 Jan 2020 16:39:25 +0000 (17:39 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Feb 2020 21:22:46 +0000 (21:22 +0000)
commit0b06c373db8a80c0dfccaa55728892702aaefb41
tree74ccaf39cbb357df82963044a201bd2e69a5de66
parente1133c1796a1e4fa413a773a5ecceb4c40f2258b
parisc: Use proper printk format for resource_size_t

[ Upstream commit 4f80b70e1953cb846dbdd1ce72cb17333d4c8d11 ]

resource_size_t should be printed with its own size-independent format
to fix warnings when compiling on 64-bit platform (e.g. with
COMPILE_TEST):

    arch/parisc/kernel/drivers.c: In function 'print_parisc_device':
    arch/parisc/kernel/drivers.c:892:9: warning:
        format '%p' expects argument of type 'void *',
        but argument 4 has type 'resource_size_t {aka unsigned int}' [-Wformat=]

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Helge Deller <deller@gmx.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/parisc/kernel/drivers.c