mirror of
https://github.com/torvalds/linux.git
synced 2026-04-18 14:53:58 -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>
32 lines
654 B
Plaintext
32 lines
654 B
Plaintext
Freescale MMA8451Q, MMA8452Q, MMA8453Q, MMA8652FC, MMA8653FC or FXLS8471Q
|
|
triaxial accelerometer
|
|
|
|
Required properties:
|
|
|
|
- compatible: should contain one of
|
|
* "fsl,mma8451"
|
|
* "fsl,mma8452"
|
|
* "fsl,mma8453"
|
|
* "fsl,mma8652"
|
|
* "fsl,mma8653"
|
|
* "fsl,fxls8471"
|
|
|
|
- reg: the I2C address of the chip
|
|
|
|
Optional properties:
|
|
|
|
- interrupts: interrupt mapping for GPIO IRQ
|
|
|
|
- interrupt-names: should contain "INT1" and/or "INT2", the accelerometer's
|
|
interrupt line in use.
|
|
|
|
Example:
|
|
|
|
mma8453fc@1d {
|
|
compatible = "fsl,mma8453";
|
|
reg = <0x1d>;
|
|
interrupt-parent = <&gpio1>;
|
|
interrupts = <5 0>;
|
|
interrupt-names = "INT2";
|
|
};
|