diff options
author | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-08-31 19:11:23 +0200 |
---|---|---|
committer | Alexandre Belloni <alexandre.belloni@bootlin.com> | 2020-09-03 10:09:34 +0200 |
commit | 58f984941d4524018ac0634c1e101bc6bbd4d257 (patch) | |
tree | fac3cc72d9730fc3e868c446f60c3c41f9a03a9e /arch/arm/boot/dts/at91sam9x5.dtsi | |
parent | 25ffa0dde53c14cd6ddc938e39f70db4f8837591 (diff) | |
download | lwn-58f984941d4524018ac0634c1e101bc6bbd4d257.tar.gz lwn-58f984941d4524018ac0634c1e101bc6bbd4d257.zip |
ARM: dts: at91: fix cpu node
The reg property is mandatory for cpu nodes, also fix the #address-cells of
the cpus node that has to be at least 1.
Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
Reviewed-by: Nicolas Ferre <nicolas.ferre@microchip.com>
Link: https://lore.kernel.org/r/20200831171129.3886857-2-alexandre.belloni@bootlin.com
Diffstat (limited to 'arch/arm/boot/dts/at91sam9x5.dtsi')
-rw-r--r-- | arch/arm/boot/dts/at91sam9x5.dtsi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/arm/boot/dts/at91sam9x5.dtsi b/arch/arm/boot/dts/at91sam9x5.dtsi index 948fe99ab6c3..442d3b8cda69 100644 --- a/arch/arm/boot/dts/at91sam9x5.dtsi +++ b/arch/arm/boot/dts/at91sam9x5.dtsi @@ -39,12 +39,13 @@ pwm0 = &pwm0; }; cpus { - #address-cells = <0>; + #address-cells = <1>; #size-cells = <0>; - cpu { + cpu@0 { compatible = "arm,arm926ej-s"; device_type = "cpu"; + reg = <0>; }; }; |