'interrupt-parent' is often documented as part of define bindings, but it is really outside the scope of a device binding. It's never required in a given node as it is often inherited from a parent node. Or it can be implicit if a parent node is an 'interrupt-controller' node. So remove it from all the binding files. Cc: Mark Rutland <mark.rutland@arm.com> Cc: devicetree@vger.kernel.org Signed-off-by: Rob Herring <robh@kernel.org>
18 lines
428 B
Text
18 lines
428 B
Text
* EETI eGalax Multiple Touch Controller
|
|
|
|
Required properties:
|
|
- compatible: must be "eeti,egalax_ts"
|
|
- reg: i2c slave address
|
|
- interrupts: touch controller interrupt
|
|
- wakeup-gpios: the gpio pin to be used for waking up the controller
|
|
and also used as irq pin
|
|
|
|
Example:
|
|
|
|
touchscreen@4 {
|
|
compatible = "eeti,egalax_ts";
|
|
reg = <0x04>;
|
|
interrupt-parent = <&gpio1>;
|
|
interrupts = <9 2>;
|
|
wakeup-gpios = <&gpio1 9 0>;
|
|
};
|