Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/ide
[sfrench/cifs-2.6.git] / Documentation / devicetree / bindings / iio / light / vcnl4035.txt
1 VISHAY VCNL4035 -  Ambient Light and proximity sensor
2
3 Link to datasheet: https://www.vishay.com/docs/84251/vcnl4035x01.pdf
4
5 Required properties:
6
7         -compatible: should be "vishay,vcnl4035"
8         -reg: I2C address of the sensor, should be 0x60
9         -interrupts: interrupt mapping for GPIO IRQ (level active low)
10
11 Example:
12
13 light-sensor@60 {
14         compatible = "vishay,vcnl4035";
15         reg = <0x60>;
16         interrupt-parent = <&gpio4>;
17         interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
18 };