1
0
Fork 0
mirror of https://github.com/Ysurac/openmptcprouter.git synced 2025-02-15 04:42:02 +00:00
openmptcprouter/root/target/linux/brcm2708/patches-4.19/0327-input-rpi-ft5406-Clear-build-warning-on-64-bit-build.patch
2019-04-22 17:10:09 +02:00

31 lines
1.1 KiB
Diff

From c6fcc4b93980b747e4ad0362c8b618f177660fae Mon Sep 17 00:00:00 2001
From: Dave Stevenson <dave.stevenson@raspberrypi.org>
Date: Mon, 28 Jan 2019 14:42:34 +0000
Subject: [PATCH 327/432] input: rpi-ft5406: Clear build warning on 64 bit
builds.
Resolve 64 bit build warning over using %x with a dma_addr_t.
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.org>
---
drivers/input/touchscreen/rpi-ft5406.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/input/touchscreen/rpi-ft5406.c b/drivers/input/touchscreen/rpi-ft5406.c
index 40bbde9ce1bc..4115b4666211 100644
--- a/drivers/input/touchscreen/rpi-ft5406.c
+++ b/drivers/input/touchscreen/rpi-ft5406.c
@@ -218,8 +218,8 @@ 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,
--
2.19.1