mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-03-22 07:27:12 +08:00
Correct all uses of "it's" that are meant to be possessive "its". Signed-off-by: Randy Dunlap <rdunlap@infradead.org> Cc: Jonathan Corbet <corbet@lwn.net> Cc: Rob Herring <robh+dt@kernel.org> Cc: Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org> Link: https://lore.kernel.org/r/20220801025221.30563-1-rdunlap@infradead.org
26 lines
754 B
Plaintext
26 lines
754 B
Plaintext
* Elan eKTF2127 I2C touchscreen controller
|
|
|
|
Required properties:
|
|
- compatible : "elan,ektf2127" or "elan,ektf2132"
|
|
- reg : I2C slave address of the chip (0x40)
|
|
- interrupts : interrupt specification for the ektf2127 interrupt
|
|
- power-gpios : GPIO specification for the pin connected to the
|
|
ektf2127's wake input. This needs to be driven high
|
|
to take ektf2127 out of its low power state
|
|
|
|
For additional optional properties see: touchscreen.txt
|
|
|
|
Example:
|
|
|
|
i2c@00000000 {
|
|
ektf2127: touchscreen@15 {
|
|
compatible = "elan,ektf2127";
|
|
reg = <0x15>;
|
|
interrupt-parent = <&pio>;
|
|
interrupts = <6 11 IRQ_TYPE_EDGE_FALLING>
|
|
power-gpios = <&pio 1 3 GPIO_ACTIVE_HIGH>;
|
|
touchscreen-inverted-x;
|
|
touchscreen-swapped-x-y;
|
|
};
|
|
};
|