1* Maxim max11100 Analog to Digital Converter (ADC)
2
3Required properties:
4  - compatible: Should be "maxim,max11100"
5  - reg: the adc unit address
6  - vref-supply: phandle to the regulator that provides reference voltage
7
8Optional properties:
9  - spi-max-frequency: SPI maximum frequency
10
11Example:
12
13max11100: adc@0 {
14        compatible = "maxim,max11100";
15        reg = <0>;
16        vref-supply = <&adc0_vref>;
17        spi-max-frequency = <240000>;
18};
19