Browse Source
Pull input subsystem fixes from Dmitry Torokhov: "Just a few driver fixes." * 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: Input: tsc40 - remove wrong announcement of pressure support Input: lpc32xx-keys - select INPUT_MATRIXKMAP Input: pxa27x_keypad - clear pending interrupts on keypad config Input: wacom - correct bad Cintiq 24HD check Input: wacom - add INPUT_PROP_DIRECT flag to Cintiq 24HD Input: egalax_ts - get gpio from devicetreemaster

8 changed files with 49 additions and 5 deletions
@ -0,0 +1,19 @@
@@ -0,0 +1,19 @@
|
||||
* EETI eGalax Multiple Touch Controller |
||||
|
||||
Required properties: |
||||
- compatible: must be "eeti,egalax_ts" |
||||
- reg: i2c slave address |
||||
- interrupt-parent: the phandle for the interrupt controller |
||||
- interrupts: touch controller interrupt |
||||
- wakeup-gpios: the gpio pin to be used for waking up the controller |
||||
as well as uased as irq pin |
||||
|
||||
Example: |
||||
|
||||
egalax_ts@04 { |
||||
compatible = "eeti,egalax_ts"; |
||||
reg = <0x04>; |
||||
interrupt-parent = <&gpio1>; |
||||
interrupts = <9 2>; |
||||
wakeup-gpios = <&gpio1 9 0>; |
||||
}; |
Loading…
Reference in new issue