kyber: make trace_block_rq call consistent with documentation
[linux-2.6-microblaze.git] / Documentation / devicetree / bindings / input / touchscreen / sitronix-st1232.txt
1 * Sitronix st1232 or st1633 touchscreen controller
2
3 Required properties:
4 - compatible: must contain one of
5   * "sitronix,st1232"
6   * "sitronix,st1633"
7 - reg: I2C address of the chip
8 - interrupts: interrupt to which the chip is connected
9
10 Optional properties:
11 - gpios: a phandle to the reset GPIO
12
13 For additional optional properties see: touchscreen.txt
14
15 Example:
16
17         i2c@00000000 {
18                 /* ... */
19
20                 touchscreen@55 {
21                         compatible = "sitronix,st1232";
22                         reg = <0x55>;
23                         interrupts = <2 0>;
24                         gpios = <&gpio1 166 0>;
25                 };
26
27                 /* ... */
28         };