treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / input / touchscreen / sitronix-st1232.txt
blob019373253b28c08cf26d7fb13b442aa535afc502
1 * Sitronix st1232 or st1633 touchscreen controller
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
10 Optional properties:
11 - gpios: a phandle to the reset GPIO
13 For additional optional properties see: touchscreen.txt
15 Example:
17         i2c@00000000 {
18                 /* ... */
20                 touchscreen@55 {
21                         compatible = "sitronix,st1232";
22                         reg = <0x55>;
23                         interrupts = <2 0>;
24                         gpios = <&gpio1 166 0>;
25                 };
27                 /* ... */
28         };