Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/jikos/livep...
[sfrench/cifs-2.6.git] / 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 };