Commit 34ea4b4a authored by Geert Uytterhoeven's avatar Geert Uytterhoeven Committed by Simon Horman

ARM: dts: r8a7794: Fix W=1 dtc warnings

Warning (unit_address_vs_reg): Node /cache-controller@1 has a unit name, but no reg property

Move the cache-controller node under the cpus node, and make its unit
name and reg property match the MPIDR value.
Signed-off-by: default avatarGeert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: default avatarSimon Horman <horms+renesas@verge.net.au>
parent ad53f5f0
...@@ -55,13 +55,14 @@ cpu1: cpu@1 { ...@@ -55,13 +55,14 @@ cpu1: cpu@1 {
power-domains = <&sysc R8A7794_PD_CA7_CPU1>; power-domains = <&sysc R8A7794_PD_CA7_CPU1>;
next-level-cache = <&L2_CA7>; next-level-cache = <&L2_CA7>;
}; };
};
L2_CA7: cache-controller@1 { L2_CA7: cache-controller@0 {
compatible = "cache"; compatible = "cache";
power-domains = <&sysc R8A7794_PD_CA7_SCU>; reg = <0>;
cache-unified; power-domains = <&sysc R8A7794_PD_CA7_SCU>;
cache-level = <2>; cache-unified;
cache-level = <2>;
};
}; };
gic: interrupt-controller@f1001000 { gic: interrupt-controller@f1001000 {
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment