treewide: remove redundant IS_ERR() before error code check
[linux/fpc-iii.git] / Documentation / devicetree / bindings / sound / cs42l51.txt
blobacbd68ddd2cbc7f2258cf23862c11322e8822b71
1 CS42L51 audio CODEC
3 Required properties:
5   - compatible : "cirrus,cs42l51"
7   - reg : the I2C address of the device for I2C.
9 Optional properties:
10   - VL-supply, VD-supply, VA-supply, VAHP-supply: power supplies for the device,
11     as covered in Documentation/devicetree/bindings/regulator/regulator.txt.
13   - reset-gpios : GPIO specification for the reset pin. If specified, it will be
14     deasserted before starting the communication with the codec.
16   - clocks : a list of phandles + clock-specifiers, one for each entry in
17     clock-names
19   - clock-names : must contain "MCLK"
21 Example:
23 cs42l51: cs42l51@4a {
24         compatible = "cirrus,cs42l51";
25         reg = <0x4a>;
26         clocks = <&mclk_prov>;
27         clock-names = "MCLK";
28         VL-supply = <&reg_audio>;
29         VD-supply = <&reg_audio>;
30         VA-supply = <&reg_audio>;
31         VAHP-supply = <&reg_audio>;
32         reset-gpios = <&gpiog 9 GPIO_ACTIVE_LOW>;