diff options
author | Nuno Sá <nuno.sa@analog.com> | 2019-10-21 16:08:15 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2019-10-21 15:53:40 +0100 |
commit | b5c2e97e08070fa523bd2ddae8020bd42e0a362e (patch) | |
tree | db35a4bdb7b2d340bce46d833f8a76fc2dab53b6 /Documentation/devicetree/bindings/sound | |
parent | 2cc3cd5fdc8ba07ba590204a3a6f6d16289d25e5 (diff) | |
download | lwn-b5c2e97e08070fa523bd2ddae8020bd42e0a362e.tar.gz lwn-b5c2e97e08070fa523bd2ddae8020bd42e0a362e.zip |
dt-bindings: asoc: adau7118: Cleanup
This changes are in accordance with the review done to this bindings.
This is a follow-up patch to 969d49b2cdc8.
Signed-off-by: Nuno Sá <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20191021140816.262401-2-nuno.sa@analog.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'Documentation/devicetree/bindings/sound')
-rw-r--r-- | Documentation/devicetree/bindings/sound/adi,adau7118.yaml | 25 |
1 files changed, 10 insertions, 15 deletions
diff --git a/Documentation/devicetree/bindings/sound/adi,adau7118.yaml b/Documentation/devicetree/bindings/sound/adi,adau7118.yaml index cfcef602b3d9..c3f10afbdd6f 100644 --- a/Documentation/devicetree/bindings/sound/adi,adau7118.yaml +++ b/Documentation/devicetree/bindings/sound/adi,adau7118.yaml @@ -26,13 +26,11 @@ properties: "#sound-dai-cells": const: 0 - IOVDD-supply: + iovdd-supply: description: Digital Input/Output Power Supply. - $ref: "/schemas/types.yaml#/definitions/phandle" - DVDD-supply: + dvdd-supply: description: Internal Core Digital Power Supply. - $ref: "/schemas/types.yaml#/definitions/phandle" adi,decimation-ratio: description: | @@ -58,23 +56,21 @@ properties: required: - "#sound-dai-cells" - compatible - - IOVDD-supply - - DVDD-supply + - iovdd-supply + - dvdd-supply examples: - | - i2c0 { + i2c { /* example with i2c support */ #address-cells = <1>; #size-cells = <0>; - status = "okay"; - adau7118_codec: adau7118-codec@14 { + adau7118_codec: audio-codec@14 { compatible = "adi,adau7118"; reg = <14>; #sound-dai-cells = <0>; - status = "okay"; - IOVDD-supply = <&supply>; - DVDD-supply = <&supply>; + iovdd-supply = <&supply>; + dvdd-supply = <&supply>; adi,pdm-clk-map = <1 1 0 0>; adi,decimation-ratio = <16>; }; @@ -84,7 +80,6 @@ examples: adau7118_codec_hw: adau7118-codec-hw { compatible = "adi,adau7118"; #sound-dai-cells = <0>; - status = "okay"; - IOVDD-supply = <&supply>; - DVDD-supply = <&supply>; + iovdd-supply = <&supply>; + dvdd-supply = <&supply>; }; |