1* Honeywell HMC5843 magnetometer sensor
2
3Required properties:
4
5  - compatible : should be "honeywell,hmc5843"
6  Other models which are supported with driver are:
7	"honeywell,hmc5883"
8	"honeywell,hmc5883l"
9	"honeywell,hmc5983"
10  - reg : the I2C address of the magnetometer - typically 0x1e
11
12Optional properties:
13
14  - gpios : should be device tree identifier of the magnetometer DRDY pin
15
16Example:
17
18hmc5843@1e {
19        compatible = "honeywell,hmc5843"
20        reg = <0x1e>;
21};
22