Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt-binding: input: egalax-ts: fix GPIO and IRQ in example

The driver is using level triggered interrupt (low) which is backed by
an active low GPIO that can be used to wake the controller by driving it
low. Let's annotate it properly in the example.

Acked-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>
Link: https://lore.kernel.org/r/20220920042608.1865560-2-dmitry.torokhov@gmail.com
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

+2 -2
+2 -2
Documentation/devicetree/bindings/input/touchscreen/egalax-ts.txt
··· 13 13 compatible = "eeti,egalax_ts"; 14 14 reg = <0x04>; 15 15 interrupt-parent = <&gpio1>; 16 - interrupts = <9 2>; 17 - wakeup-gpios = <&gpio1 9 0>; 16 + interrupts = <9 IRQ_TYPE_LEVEL_LOW>; 17 + wakeup-gpios = <&gpio1 9 GPIO_ACTIVE_LOW>; 18 18 };