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

i2c: pnx: Use proper printk format for resource_size_t

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):

drivers/i2c/busses/i2c-pnx.c: In function ‘i2c_pnx_probe’:
drivers/i2c/busses/i2c-pnx.c:737:47: warning:
format ‘%x’ expects argument of type ‘unsigned int’,
but argument 5 has type ‘resource_size_t {aka long long unsigned int}’ [-Wformat=]

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>

authored by

Krzysztof Kozlowski and committed by
Wolfram Sang
17b3fe8b 066e6e80

+2 -2
+2 -2
drivers/i2c/busses/i2c-pnx.c
··· 734 734 if (ret < 0) 735 735 goto out_clock; 736 736 737 - dev_dbg(&pdev->dev, "%s: Master at %#8x, irq %d.\n", 738 - alg_data->adapter.name, res->start, alg_data->irq); 737 + dev_dbg(&pdev->dev, "%s: Master at %pap, irq %d.\n", 738 + alg_data->adapter.name, &res->start, alg_data->irq); 739 739 740 740 return 0; 741 741