treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / sound / adi,adau17x1.txt
blob1447dec281252cb1f71374742e54331ebebd7c5b
1 Analog Devices ADAU1361/ADAU1461/ADAU1761/ADAU1961/ADAU1381/ADAU1781
3 Required properties:
5  - compatible:          Should contain one of the following:
6                         "adi,adau1361"
7                         "adi,adau1461"
8                         "adi,adau1761"
9                         "adi,adau1961"
10                         "adi,adau1381"
11                         "adi,adau1781"
13  - reg:                 The i2c address. Value depends on the state of ADDR0
14                         and ADDR1, as wired in hardware.
16 Optional properties:
17  - clock-names:         If provided must be "mclk".
18  - clocks:              phandle + clock-specifiers for the clock that provides
19                         the audio master clock for the device.
21 Examples:
22 #include <dt-bindings/sound/adau17x1.h>
24         i2c_bus {
25                 adau1361@38 {
26                         compatible = "adi,adau1761";
27                         reg = <0x38>;
29                         clock-names = "mclk";
30                         clocks = <&audio_clock>;
31                 };
32         };