Message ID | 20241109-x1e80100-fix-address-size-cells-missing-warnings-v1-1-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 88805629ed2bf052ea6ec152794066217489cf52..c6b554bac616b9ea6a183e894d4e3d58516fbcd7 100644 --- a/arch/arm64/boot/dts/qcom/x1e80100.dtsi +++ b/arch/arm64/boot/dts/qcom/x1e80100.dtsi @@ -304,6 +304,9 @@ cluster_cl5: cluster-sleep-1 { }; firmware { + #address-cells = <1>; + #size-cells = <0>; + scm: scm { compatible = "qcom,scm-x1e80100", "qcom,scm"; interconnects = <&aggre2_noc MASTER_CRYPTO QCOM_ICC_TAG_ALWAYS @@ -5804,6 +5807,9 @@ apps_rsc: rsc@17500000 { label = "apps_rsc"; power-domains = <&system_pd>; + #address-cells = <1>; + #size-cells = <0>; + apps_bcm_voter: bcm-voter { compatible = "qcom,bcm-voter"; };
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 firmware node to get rid of those warnings. Cc: <stable+noautosel@kernel.org> # Depends on commit 4b28a0dec185 Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts") Signed-off-by: Abel Vesa <abel.vesa@linaro.org> --- arch/arm64/boot/dts/qcom/x1e80100.dtsi | 6 ++++++ 1 file changed, 6 insertions(+)