mirror of
https://github.com/torvalds/linux.git
synced 2026-04-21 00:04:01 -04:00
'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>
16 lines
321 B
Plaintext
16 lines
321 B
Plaintext
* Semtech SX8654 I2C Touchscreen Controller
|
|
|
|
Required properties:
|
|
- compatible: must be "semtech,sx8654"
|
|
- reg: i2c slave address
|
|
- interrupts: touch controller interrupt
|
|
|
|
Example:
|
|
|
|
sx8654@48 {
|
|
compatible = "semtech,sx8654";
|
|
reg = <0x48>;
|
|
interrupt-parent = <&gpio6>;
|
|
interrupts = <3 IRQ_TYPE_EDGE_FALLING>;
|
|
};
|