1MAX9860 Mono Audio Voice Codec
2
3Required properties:
4
5  - compatible : "maxim,max9860"
6
7  - reg : the I2C address of the device
8
9  - AVDD-supply, DVDD-supply and DVDDIO-supply : power supplies for
10    the device, as covered in bindings/regulator/regulator.txt
11
12  - clock-names : Required element: "mclk".
13
14  - clocks : A clock specifier for the clock connected as MCLK.
15
16Examples:
17
18	max9860: max9860@10 {
19		compatible = "maxim,max9860";
20		reg = <0x10>;
21
22		AVDD-supply = <&reg_1v8>;
23		DVDD-supply = <&reg_1v8>;
24		DVDDIO-supply = <&reg_3v0>;
25
26		clock-names = "mclk";
27		clocks = <&pck2>;
28	};
29