diff options
author | Brian Masney <masneyb@onstation.org> | 2016-10-07 02:48:35 +0200 |
---|---|---|
committer | Jonathan Cameron <jic23@kernel.org> | 2016-10-11 20:40:26 +0200 |
commit | 88efa2baf15a5766c6b9cc29e60761b441cec170 (patch) | |
tree | c26427f9bf34ec919e93662cf483c0f661b510b2 /Documentation | |
parent | Staging: iio: meter: ade7758_core: implement IIO_CHAN_INFO_SAMP_FREQ (diff) | |
download | linux-88efa2baf15a5766c6b9cc29e60761b441cec170.tar.xz linux-88efa2baf15a5766c6b9cc29e60761b441cec170.zip |
staging: iio: isl29018: document device tree bindings
Fix the following warnings from checkpatch:
WARNING: DT compatible string "isil,isl29018" appears un-documented --
check ./Documentation/devicetree/bindings/
WARNING: DT compatible string "isil,isl29023" appears un-documented --
check ./Documentation/devicetree/bindings/
WARNING: DT compatible string "isil,isl29035" appears un-documented --
check ./Documentation/devicetree/bindings/
Signed-off-by: Brian Masney <masneyb@onstation.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/iio/light/isl29018.txt | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/iio/light/isl29018.txt b/Documentation/devicetree/bindings/iio/light/isl29018.txt new file mode 100644 index 000000000000..425ab459e209 --- /dev/null +++ b/Documentation/devicetree/bindings/iio/light/isl29018.txt @@ -0,0 +1,28 @@ +* ISL 29018/29023/29035 I2C ALS, Proximity, and Infrared sensor + +Required properties: + + - compatible: Should be one of + "isil,isl29018" + "isil,isl29023" + "isil,isl29035" + - reg: the I2C address of the device + +Optional properties: + + - interrupt-parent: should be the phandle for the interrupt controller + - 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: + +isl29018@44 { + compatible = "isil,isl29018"; + reg = <0x44>; + interrupt-parent = <&gpio>; + interrupts = <TEGRA_GPIO(Z, 2) IRQ_TYPE_LEVEL_HIGH>; +}; |