diff options
author | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-01-17 10:47:54 +0900 |
---|---|---|
committer | Seung-Woo Kim <sw0312.kim@samsung.com> | 2018-08-30 14:42:42 +0900 |
commit | 3fd4a4e7e83002aa6bdf27406e2827bdd3ebd5cd (patch) | |
tree | cc90d648dd3ceb533dacd7fe4147c4a5d2d867c6 | |
parent | 3809b8f4d01b091a44e5c20979aa47044a2b3293 (diff) | |
download | linux-rpi3-3fd4a4e7e83002aa6bdf27406e2827bdd3ebd5cd.tar.gz linux-rpi3-3fd4a4e7e83002aa6bdf27406e2827bdd3ebd5cd.tar.bz2 linux-rpi3-3fd4a4e7e83002aa6bdf27406e2827bdd3ebd5cd.zip |
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 <sw0312.kim@samsung.com>
-rw-r--r-- | drivers/input/touchscreen/rpi-ft5406.c | 5 |
1 files 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, |