1Device tree bindings for Domintech DMARD05, DMARD06, DMARD07 accelerometers
2
3Required properties:
4 - compatible		: Should be "domintech,dmard05"
5				 or "domintech,dmard06"
6				 or "domintech,dmard07"
7 - reg			: I2C address of the chip. Should be 0x1c
8
9Example:
10	&i2c1 {
11		/* ... */
12
13		accelerometer@1c {
14			compatible = "domintech,dmard06";
15			reg = <0x1c>;
16		};
17
18		/* ... */
19	};
20