diff options
author | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-07 21:33:12 +0300 |
---|---|---|
committer | Krzysztof Kozlowski <krzk@kernel.org> | 2020-09-11 17:38:06 +0300 |
commit | 2436a7e38f9caa8cc93856015d2c132b44c1c0e8 (patch) | |
tree | 9e8d95e6d531cdbc82508c722c088bc0950ae4ae /arch/arm/boot/dts/s3c2416.dtsi | |
parent | 17281a3c7f5c4e43ec61efe62c24ff593eb57cf5 (diff) | |
download | linux-2436a7e38f9caa8cc93856015d2c132b44c1c0e8.tar.xz |
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
Diffstat (limited to 'arch/arm/boot/dts/s3c2416.dtsi')
-rw-r--r-- | arch/arm/boot/dts/s3c2416.dtsi | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/arm/boot/dts/s3c2416.dtsi b/arch/arm/boot/dts/s3c2416.dtsi index d1dec9f52f69..4f084f4fe44f 100644 --- a/arch/arm/boot/dts/s3c2416.dtsi +++ b/arch/arm/boot/dts/s3c2416.dtsi @@ -18,8 +18,13 @@ }; cpus { - cpu { + #address-cells = <1>; + #size-cells = <0>; + + cpu@0 { + device_type = "cpu"; compatible = "arm,arm926ej-s"; + reg = <0x0>; }; }; |