Skip to content

Commit 653208b

Browse files
committed
arm64: dts: amazon: alpine-v3: drop cache nodes unit addresses
Cache device nodes within cpus do not have "reg" property, so should not have unit address, as reported by dtc W=1 warnings: alpine-v3.dtsi:247.24-254.5: Warning (unit_address_vs_reg): /cpus/cache@0: node has a unit name, but no reg or ranges property alpine-v3.dtsi:256.26-263.5: Warning (unit_address_vs_reg): /cpus/cache@100: node has a unit name, but no reg or ranges property alpine-v3.dtsi:265.26-272.5: Warning (unit_address_vs_reg): /cpus/cache@200: node has a unit name, but no reg or ranges property alpine-v3.dtsi:274.26-281.5: Warning (unit_address_vs_reg): /cpus/cache@300: node has a unit name, but no reg or ranges property Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org> Link: https://lore.kernel.org/r/20240402200744.79349-4-krzk@kernel.org
1 parent 3eea51b commit 653208b

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

arch/arm64/boot/dts/amazon/alpine-v3.dtsi

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -244,7 +244,7 @@
244244
next-level-cache = <&cluster3_l2>;
245245
};
246246

247-
cluster0_l2: cache@0 {
247+
cluster0_l2: cache-0 {
248248
compatible = "cache";
249249
cache-size = <0x200000>;
250250
cache-line-size = <64>;
@@ -253,7 +253,7 @@
253253
cache-unified;
254254
};
255255

256-
cluster1_l2: cache@100 {
256+
cluster1_l2: cache-100 {
257257
compatible = "cache";
258258
cache-size = <0x200000>;
259259
cache-line-size = <64>;
@@ -262,7 +262,7 @@
262262
cache-unified;
263263
};
264264

265-
cluster2_l2: cache@200 {
265+
cluster2_l2: cache-200 {
266266
compatible = "cache";
267267
cache-size = <0x200000>;
268268
cache-line-size = <64>;
@@ -271,7 +271,7 @@
271271
cache-unified;
272272
};
273273

274-
cluster3_l2: cache@300 {
274+
cluster3_l2: cache-300 {
275275
compatible = "cache";
276276
cache-size = <0x200000>;
277277
cache-line-size = <64>;

0 commit comments

Comments
 (0)