1* Texas Instruments' ads124s08 and ads124s06 ADC chip
2
3Required properties:
4 - compatible :
5	"ti,ads124s08"
6	"ti,ads124s06"
7 - reg : spi chip select number for the device
8
9Recommended properties:
10 - spi-max-frequency : Definition as per
11		Documentation/devicetree/bindings/spi/spi-bus.txt
12 - spi-cpha : Definition as per
13		Documentation/devicetree/bindings/spi/spi-bus.txt
14
15Optional properties:
16 - reset-gpios : GPIO pin used to reset the device.
17
18Example:
19adc@0 {
20	compatible = "ti,ads124s08";
21	reg = <0>;
22	spi-max-frequency = <1000000>;
23	spi-cpha;
24	reset-gpios = <&gpio1 16 GPIO_ACTIVE_LOW>;
25};
26