[PATCH 05/21] of: platform: Use PRINTF_CONVERSION_RESOURCE for printing resources

Sascha Hauer s.hauer at pengutronix.de
Tue Jul 8 01:50:01 PDT 2014


Avoids compiler warnings about wrong format specifiers

Signed-off-by: Sascha Hauer <s.hauer at pengutronix.de>
---
 drivers/of/platform.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/drivers/of/platform.c b/drivers/of/platform.c
index 72e75cc..c417cfd 100644
--- a/drivers/of/platform.c
+++ b/drivers/of/platform.c
@@ -183,7 +183,8 @@ static struct device_d *of_platform_device_create(struct device_node *np,
 	dev->num_resources = num_reg;
 	of_device_make_bus_id(dev);
 
-	debug("%s: register device %s, io=0x%08x\n", __func__, dev_name(dev),
+	debug("%s: register device %s, io=" PRINTF_CONVERSION_RESOURCE "\n",
+			__func__, dev_name(dev),
 		(num_reg) ? dev->resource[0].start : (-1));
 
 	ret = platform_device_register(dev);
-- 
2.0.0




More information about the barebox mailing list