ARM: dts: s3c24xx: add address to CPU node
authorKrzysztof Kozlowski <krzk@kernel.org>
Mon, 7 Sep 2020 18:33:12 +0000 (20:33 +0200)
committerKrzysztof Kozlowski <krzk@kernel.org>
Fri, 11 Sep 2020 14:38:06 +0000 (16:38 +0200)
The CPU nodes should be described as children of "cpus" bus node with
appropriate "reg" properties:

  cpus: '#address-cells' is a required property
  cpus: '#size-cells' is a required property
  cpu: 'device_type' is a required property
  cpu: 'reg' is a required property

Signed-off-by: Krzysztof Kozlowski <krzk@kernel.org>
Link: https://lore.kernel.org/r/20200907183313.29234-11-krzk@kernel.org
arch/arm/boot/dts/s3c2416.dtsi

index d1dec9f..4f084f4 100644 (file)
        };
 
        cpus {
-               cpu {
+               #address-cells = <1>;
+               #size-cells = <0>;
+
+               cpu@0 {
+                       device_type = "cpu";
                        compatible = "arm,arm926ej-s";
+                       reg = <0x0>;
                };
        };