1Kionix KXSD9 Accelerometer device tree bindings
2
3Required properties:
4 - compatible: 		should be set to "kionix,kxsd9"
5 - reg:			i2c slave address
6
7Optional properties:
8 - vdd-supply:		The input supply for VDD
9 - iovdd-supply:	The input supply for IOVDD
10 - interrupts:		The movement detection interrupt
11 - mount-matrix:	See mount-matrix.txt
12
13Example:
14
15kxsd9@18 {
16	compatible = "kionix,kxsd9";
17	reg = <0x18>;
18	interrupt-parent = <&foo>;
19	interrupts = <57 IRQ_TYPE_EDGE_FALLING>;
20	iovdd-supply = <&bar>;
21	vdd-supply = <&baz>;
22};
23