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 one of:
8                 "bosch,bmc150_magn"
9                 "bosch,bmc156_magn"
10                 "bosch,bmm150"
11                 "bosch,bmm150_magn" (DEPRECATED, use bosch,bmm150)
12  - reg : the I2C address of the magnetometer
13
14Optional properties:
15
16  - interrupts : interrupt mapping for GPIO IRQ
17
18Example:
19
20bmc150_magn@12 {
21        compatible = "bosch,bmc150_magn";
22        reg = <0x12>;
23        interrupt-parent = <&gpio1>;
24        interrupts = <0 1>;
25};
26