1
0
Fork 0

ARM: dts: s3c24xx: add address to CPU node

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
zero-sugar-mainline-defconfig
Krzysztof Kozlowski 2020-09-07 20:33:12 +02:00
parent 17281a3c7f
commit 2436a7e38f
1 changed files with 6 additions and 1 deletions

View File

@ -18,8 +18,13 @@
};
cpus {
cpu {
#address-cells = <1>;
#size-cells = <0>;
cpu@0 {
device_type = "cpu";
compatible = "arm,arm926ej-s";
reg = <0x0>;
};
};