diff options
author | 2024-09-16 10:08:39 +0200 | |
---|---|---|
committer | 2024-09-30 09:31:35 +0200 | |
commit | ecb81fe2ffde2b925e46e4d02816a8292a7a3229 (patch) | |
tree | 13dd9ca5466ad659564705a0c6d06751547ed5a5 | |
parent | ARM: dts: amlogic: meson8-minix-neo-x8: fix invalid pnictrl-names (diff) | |
download | wireguard-linux-ecb81fe2ffde2b925e46e4d02816a8292a7a3229.tar.xz wireguard-linux-ecb81fe2ffde2b925e46e4d02816a8292a7a3229.zip |
ARM: dts: amlogic: meson8b-ec100: add missing clocks property in sound card
Since [1], sound card must have the corresponding clocks property,
add it to the EC100 DT, and fix:
meson8b-ec100.dtb: sound: 'anyOf' conditional failed, one must be fixed:
'clocks' is a required property
'#clock-cells' is a required property
from schema $id: http://devicetree.org/schemas/clock/clock.yaml#
[1] ASoC: dt-bindings: amlogic,gx-sound-card: document clocks property
commit: f189c972f86b00318cf2547b62e461cb98374e34
Reviewed-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com>
Link: https://lore.kernel.org/r/20240916-topic-amlogic-arm32-upstream-bindings-fixes-v2-10-0b20ed4f0571@linaro.org
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
-rw-r--r-- | arch/arm/boot/dts/amlogic/meson8b-ec100.dts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/amlogic/meson8b-ec100.dts b/arch/arm/boot/dts/amlogic/meson8b-ec100.dts index 36fc3e15ee9f..bf1ef07de6c1 100644 --- a/arch/arm/boot/dts/amlogic/meson8b-ec100.dts +++ b/arch/arm/boot/dts/amlogic/meson8b-ec100.dts @@ -98,6 +98,10 @@ compatible = "amlogic,gx-sound-card"; model = "M8B-EC100"; + clocks = <&clkc CLKID_MPLL0>, + <&clkc CLKID_MPLL1>, + <&clkc CLKID_MPLL2>; + assigned-clocks = <&clkc CLKID_MPLL0>, <&clkc CLKID_MPLL1>, <&clkc CLKID_MPLL2>; |