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

dt-bindings: input: touchscreen: add max11801-ts binding

Add missing documentation of max11801-ts dt-binding details.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Acked-by: Rob Herring <robh@kernel.org>
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>

authored by

Jagan Teki and committed by
Dmitry Torokhov
7e7113f7 00480324

+18
+18
Documentation/devicetree/bindings/input/touchscreen/max11801-ts.txt
··· 1 + * MAXI MAX11801 Resistive touch screen controller with i2c interface 2 + 3 + Required properties: 4 + - compatible: must be "maxim,max11801" 5 + - reg: i2c slave address 6 + - interrupt-parent: the phandle for the interrupt controller 7 + - interrupts: touch controller interrupt 8 + 9 + Example: 10 + 11 + &i2c1 { 12 + max11801: touchscreen@48 { 13 + compatible = "maxim,max11801"; 14 + reg = <0x48>; 15 + interrupt-parent = <&gpio3>; 16 + interrupts = <31 IRQ_TYPE_EDGE_FALLING>; 17 + }; 18 + };