diff options
author | Simon Horman <horms+renesas@verge.net.au> | 2013-01-27 19:41:40 -0500 |
---|---|---|
committer | Simon Horman <horms+renesas@verge.net.au> | 2013-01-28 21:44:59 -0500 |
commit | fe681d2941a7dc4870753d88545a35ec5080d710 (patch) | |
tree | 1a834eb3b803ef8d72d5a75cbc36871e7d924842 | |
parent | c5795aec8487680d748a635d6ab03766f90166ec (diff) |
ARM: mach-shmobile: emev2: Add reg and device_type properties to cpus
Cc: Mark Rutland <mark.rutland@arm.com>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
-rw-r--r-- | arch/arm/boot/dts/emev2.dtsi | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/emev2.dtsi b/arch/arm/boot/dts/emev2.dtsi index eb504a6c0f4a..c8a8c08b48dd 100644 --- a/arch/arm/boot/dts/emev2.dtsi +++ b/arch/arm/boot/dts/emev2.dtsi | |||
@@ -15,11 +15,18 @@ | |||
15 | interrupt-parent = <&gic>; | 15 | interrupt-parent = <&gic>; |
16 | 16 | ||
17 | cpus { | 17 | cpus { |
18 | #address-cells = <1>; | ||
19 | #size-cells = <0>; | ||
20 | |||
18 | cpu@0 { | 21 | cpu@0 { |
22 | device_type = "cpu"; | ||
19 | compatible = "arm,cortex-a9"; | 23 | compatible = "arm,cortex-a9"; |
24 | reg = <0>; | ||
20 | }; | 25 | }; |
21 | cpu@1 { | 26 | cpu@1 { |
27 | device_type = "cpu"; | ||
22 | compatible = "arm,cortex-a9"; | 28 | compatible = "arm,cortex-a9"; |
29 | reg = <1>; | ||
23 | }; | 30 | }; |
24 | }; | 31 | }; |
25 | 32 | ||