All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/5] i2c: pmcmsp: Use proper printk format for resource_size_t
@ 2019-12-30 17:27 ` Krzysztof Kozlowski
  0 siblings, 0 replies; 24+ messages in thread
From: Krzysztof Kozlowski @ 2019-12-30 17:27 UTC (permalink / raw)
  To: Vladimir Zapolskiy, Sylvain Lemieux, Linus Walleij, Wolfram Sang,
	Jean Delvare, Jarkko Nikula, Max Staudt, Juergen Fitschen,
	Elie Morisse, linux-i2c, linux-kernel, linux-arm-kernel
  Cc: Krzysztof Kozlowski

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-pmcmsp.c: In function ‘pmcmsptwi_probe’:
    drivers/i2c/busses/i2c-pmcmsp.c:276:25: warning:
        format ‘%x’ expects argument of type ‘unsigned int’,
        but argument 3 has type ‘resource_size_t {aka long long unsigned int}’ [-Wformat=]

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
---
 drivers/i2c/busses/i2c-pmcmsp.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/drivers/i2c/busses/i2c-pmcmsp.c b/drivers/i2c/busses/i2c-pmcmsp.c
index 4fde74eb34a7..5d3a12bd420b 100644
--- a/drivers/i2c/busses/i2c-pmcmsp.c
+++ b/drivers/i2c/busses/i2c-pmcmsp.c
@@ -274,8 +274,8 @@ static int pmcmsptwi_probe(struct platform_device *pldev)
 	if (!request_mem_region(res->start, resource_size(res),
 				pldev->name)) {
 		dev_err(&pldev->dev,
-			"Unable to get memory/io address region 0x%08x\n",
-			res->start);
+			"Unable to get memory/io address region %pa[p]\n",
+			&(res->start));
 		rc = -EBUSY;
 		goto ret_err;
 	}
@@ -285,7 +285,7 @@ static int pmcmsptwi_probe(struct platform_device *pldev)
 						resource_size(res));
 	if (!pmcmsptwi_data.iobase) {
 		dev_err(&pldev->dev,
-			"Unable to ioremap address 0x%08x\n", res->start);
+			"Unable to ioremap address %pa[p]\n", &(res->start));
 		rc = -EIO;
 		goto ret_unreserve;
 	}
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 24+ messages in thread

end of thread, other threads:[~2020-01-07 15:08 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-12-30 17:27 [PATCH 1/5] i2c: pmcmsp: Use proper printk format for resource_size_t Krzysztof Kozlowski
2019-12-30 17:27 ` Krzysztof Kozlowski
2019-12-30 17:27 ` [PATCH 2/5] i2c: pnx: " Krzysztof Kozlowski
2019-12-30 17:27   ` Krzysztof Kozlowski
2019-12-30 17:27 ` [PATCH 3/5] i2c: highlander: Use proper printk format for iomem pointer Krzysztof Kozlowski
2019-12-30 17:27   ` Krzysztof Kozlowski
2020-01-07 15:08   ` Luca Ceresoli
2020-01-07 15:08     ` Luca Ceresoli
2019-12-30 17:27 ` [PATCH 4/5] i2c: stu300: " Krzysztof Kozlowski
2019-12-30 17:27   ` Krzysztof Kozlowski
2020-01-07 10:36   ` Linus Walleij
2020-01-07 10:36     ` Linus Walleij
2019-12-30 17:27 ` [PATCH 5/5] i2c: Enable compile testing for some of drivers Krzysztof Kozlowski
2019-12-30 17:27   ` Krzysztof Kozlowski
2019-12-30 19:11   ` Geert Uytterhoeven
2019-12-30 19:11     ` Geert Uytterhoeven
2019-12-30 19:11     ` Geert Uytterhoeven
2019-12-31  9:01     ` Krzysztof Kozlowski
2019-12-31  9:01       ` Krzysztof Kozlowski
2019-12-31  9:20       ` Geert Uytterhoeven
2019-12-31  9:20         ` Geert Uytterhoeven
2020-01-03 13:42         ` Krzysztof Kozlowski
2020-01-03 13:42           ` Krzysztof Kozlowski
2020-01-03 13:42           ` Krzysztof Kozlowski

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.