1VISHAY VCNL4035 -  Ambient Light and proximity sensor
2
3Link to datasheet: https://www.vishay.com/docs/84251/vcnl4035x01.pdf
4
5Required 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
11Example:
12
13light-sensor@60 {
14	compatible = "vishay,vcnl4035";
15	reg = <0x60>;
16	interrupt-parent = <&gpio4>;
17	interrupts = <11 IRQ_TYPE_LEVEL_LOW>;
18};
19