1* Avago APDS9300 ambient light sensor
2
3http://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  - interrupt-parent : should be the phandle for the interrupt controller
13  - interrupts : interrupt mapping for GPIO IRQ
14
15Example:
16
17apds9300@39 {
18	compatible = "avago,apds9300";
19	reg = <0x39>;
20	interrupt-parent = <&gpio2>;
21	interrupts = <29 8>;
22};
23