1* Avago APDS9300 ambient light sensor
2
3https://www.avagotech.com/docs/AV02-1077EN
4
5Required properties:
6
7  - compatible : should be "avago,apds9300"
8  - reg : the I2C address of the sensor
9
10Optional properties:
11
12  - interrupts : interrupt mapping for GPIO IRQ
13
14Example:
15
16apds9300@39 {
17	compatible = "avago,apds9300";
18	reg = <0x39>;
19	interrupt-parent = <&gpio2>;
20	interrupts = <29 8>;
21};
22