diff options
author | Jonas Karlman <jonas@kwiboo.se> | 2024-05-21 23:10:05 +0200 |
---|---|---|
committer | Heiko Stuebner <heiko@sntech.de> | 2024-05-28 00:21:22 +0200 |
commit | cb1622df6a28e3eac34a8b95feba2dd2dc6cd887 (patch) | |
tree | 3ab7b7eea0bda3d18ff0f4bd3634991e8c52fdc5 /arch/arm64/boot | |
parent | arm64: dts: rockchip: Fix the DCDC_REG2 minimum voltage on Quartz64 Model B (diff) | |
download | linux-cb1622df6a28e3eac34a8b95feba2dd2dc6cd887.tar.xz linux-cb1622df6a28e3eac34a8b95feba2dd2dc6cd887.zip |
arm64: dts: rockchip: Fix rk3308 codec@ff560000 reset-names
The commit 30d72458624b ("arm64: dts: rockchip: add the internal audio
codec on rk3308") added codec@ff560000 node to SoC DT. However, the
node does not pass DT schema validation:
codec@ff560000: reset-names:0: 'codec' was expected
from schema $id: http://devicetree.org/schemas/sound/rockchip,rk3308-codec.yaml#
Use the expected codec reset name to fix this.
Fixes: 30d72458624b ("arm64: dts: rockchip: add the internal audio codec on rk3308")
Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
Link: https://lore.kernel.org/r/20240521211029.1236094-3-jonas@kwiboo.se
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Diffstat (limited to 'arch/arm64/boot')
-rw-r--r-- | arch/arm64/boot/dts/rockchip/rk3308.dtsi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm64/boot/dts/rockchip/rk3308.dtsi b/arch/arm64/boot/dts/rockchip/rk3308.dtsi index 962ea893999b..c00da150a22f 100644 --- a/arch/arm64/boot/dts/rockchip/rk3308.dtsi +++ b/arch/arm64/boot/dts/rockchip/rk3308.dtsi @@ -811,7 +811,7 @@ clocks = <&cru SCLK_I2S2_8CH_TX_OUT>, <&cru SCLK_I2S2_8CH_RX_OUT>, <&cru PCLK_ACODEC>; - reset-names = "codec-reset"; + reset-names = "codec"; resets = <&cru SRST_ACODEC_P>; #sound-dai-cells = <0>; status = "disabled"; |