From 3fd4a4e7e83002aa6bdf27406e2827bdd3ebd5cd Mon Sep 17 00:00:00 2001 From: Seung-Woo Kim Date: Wed, 17 Jan 2018 10:47:54 +0900 Subject: input: rpi-ft5406: remove wrong printing format build warning Remove wrong printing format build warning for dma_addr_t. Change-Id: I5f3a4571594eb6229e8a2f4feb8bb3d368a2db62 Signed-off-by: Seung-Woo Kim --- drivers/input/touchscreen/rpi-ft5406.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/drivers/input/touchscreen/rpi-ft5406.c b/drivers/input/touchscreen/rpi-ft5406.c index 4bb2d68c406b..ee13552dc6a7 100644 --- a/drivers/input/touchscreen/rpi-ft5406.c +++ b/drivers/input/touchscreen/rpi-ft5406.c @@ -276,8 +276,9 @@ static int ft5406_probe(struct platform_device *pdev) if (!ts->ts_base) { dev_warn(dev, - "set failed, trying get (err:%d touchbuf:%x virt:%p bus:%x)\n", - err, touchbuf, ts->ts_base, ts->bus_addr); + "set failed, " + "trying get (err:%d touchbuf:%x virt:%p bus:%pad)\n", + err, touchbuf, ts->ts_base, &ts->bus_addr); err = rpi_firmware_property( fw, -- cgit v1.2.3