Message ID | 20241109-x1e80100-fix-address-size-cells-missing-warnings-v1-2-c1e173369657@linaro.org (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | arm64: dts: qcom: x1e80100: Fix missing address/size cells warnings | expand |
diff --git a/arch/arm64/boot/dts/qcom/x1e80100.dtsi b/arch/arm64/boot/dts/qcom/x1e80100.dtsi index c6b554bac616b9ea6a183e894d4e3d58516fbcd7..568f9a295e497533344ba47ed1e4ae7aa3d2ab16 100644 --- a/arch/arm64/boot/dts/qcom/x1e80100.dtsi +++ b/arch/arm64/boot/dts/qcom/x1e80100.dtsi @@ -6232,6 +6232,8 @@ q6apm: service@1 { #sound-dai-cells = <0>; qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; + #address-cells = <1>; + #size-cells = <0>; q6apmbedai: bedais { compatible = "qcom,q6apm-lpass-dais"; @@ -6250,6 +6252,8 @@ q6prm: service@2 { reg = <GPR_PRM_MODULE_IID>; qcom,protection-domain = "avs/audio", "msm/adsp/audio_pd"; + #address-cells = <1>; + #size-cells = <0>; q6prmcc: clock-controller { compatible = "qcom,q6prm-lpass-clocks";
The commit 4b28a0dec185 ("of: WARN on deprecated #address-cells/#size-cells handling") now forces the parent nodes to specify #adddress-cells and #size-cells, otherwise it will throw a warning. So add the #address-cells and #size-cells properties to the ADSP GPR nodes (q6apm and q6prm) to get rid of those warnings. Cc: <stable+noautosel@kernel.org> # Depends on commit 4b28a0dec185 Fixes: 99f63aea9149 ("arm64: dts: qcom: x1e80100: add ADSP GPR") Signed-off-by: Abel Vesa <abel.vesa@linaro.org> --- arch/arm64/boot/dts/qcom/x1e80100.dtsi | 4 ++++ 1 file changed, 4 insertions(+)