[RFC,v2,3/7] ARM: dts: sunxi: fix touchscreen reset GPIO polarity
Commit Message
From: Quentin Schulz <quentin.schulz@theobroma-systems.com>
The reset line is active low for the Goodix touchscreen controller so
let's fix the polarity in the Device Tree node.
Signed-off-by: Quentin Schulz <quentin.schulz@theobroma-systems.com>
---
arch/arm/boot/dts/sun7i-a20-wexler-tab7200.dts | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -114,7 +114,7 @@ gt911: touchscreen@5d {
interrupt-parent = <&pio>;
interrupts = <7 21 IRQ_TYPE_EDGE_FALLING>; /* EINT21 (PH21) */
irq-gpios = <&pio 7 21 GPIO_ACTIVE_HIGH>; /* INT (PH21) */
- reset-gpios = <&pio 1 13 GPIO_ACTIVE_HIGH>; /* RST (PB13) */
+ reset-gpios = <&pio 1 13 GPIO_ACTIVE_LOW>; /* RST (PB13) */
touchscreen-swapped-x-y;
};
};