mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00: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>
25 lines
520 B
Text
25 lines
520 B
Text
* TAOS TSL 2580/2581/2583 ALS sensor
|
|
|
|
Required properties:
|
|
|
|
- compatible: Should be one of
|
|
"amstaos,tsl2580"
|
|
"amstaos,tsl2581"
|
|
"amstaos,tsl2583"
|
|
- reg: the I2C address of the device
|
|
|
|
Optional properties:
|
|
|
|
- interrupts: the sole interrupt generated by the device
|
|
|
|
Refer to interrupt-controller/interrupts.txt for generic interrupt client
|
|
node bindings.
|
|
|
|
- vcc-supply: phandle to the regulator that provides power to the sensor.
|
|
|
|
Example:
|
|
|
|
tsl2581@29 {
|
|
compatible = "amstaos,tsl2581";
|
|
reg = <0x29>;
|
|
};
|