1* Bosch BMC150 magnetometer sensor
2
3http://ae-bst.resource.bosch.com/media/products/dokumente/bmc150/BST-BMC150-DS000-04.pdf
4
5Required properties:
6
7  - compatible : should be "bosch,bmc150_magn"
8  - reg : the I2C address of the magnetometer
9
10Optional properties:
11
12  - interrupt-parent : phandle to the parent interrupt controller
13  - interrupts : interrupt mapping for GPIO IRQ
14
15Example:
16
17bmc150_magn@12 {
18        compatible = "bosch,bmc150_magn";
19        reg = <0x12>;
20        interrupt-parent = <&gpio1>;
21        interrupts = <0 1>;
22};
23