diff options
author | Andrew Lunn <andrew@lunn.ch> | 2013-09-13 22:09:52 +0200 |
---|---|---|
committer | Jason Cooper <jason@lakedaemon.net> | 2013-09-18 16:41:12 +0000 |
commit | 2290414be0c9e360f5909ae0e33f6a2df3980f14 (patch) | |
tree | 64df4af58f78fe7517f5b35ffa862fcd48201574 /arch/arm/boot | |
parent | 4ec7fc4abb554c6c9b0eda81ad1c9cb82c29aa79 (diff) |
ARM: Kirkwood: Add missing DT reg property to cpu@0
The kirkwood.dtsi cpu@0 node is missing the mandatory reg property.
This causes of_get_cpu_node() to fail to find the node and as a result
the cpufreq driver fails in its probe function.
Signed-off-by: Andrew Lunn <andrew@lunn.ch>
Signed-off-by: Jason Cooper <jason@lakedaemon.net>
Diffstat (limited to 'arch/arm/boot')
-rw-r--r-- | arch/arm/boot/dts/kirkwood.dtsi | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/arm/boot/dts/kirkwood.dtsi b/arch/arm/boot/dts/kirkwood.dtsi index cf7aeaf89e9c..858099f5b966 100644 --- a/arch/arm/boot/dts/kirkwood.dtsi +++ b/arch/arm/boot/dts/kirkwood.dtsi @@ -13,6 +13,7 @@ cpu@0 { device_type = "cpu"; compatible = "marvell,feroceon"; + reg = <0>; clocks = <&core_clk 1>, <&core_clk 3>, <&gate_clk 11>; clock-names = "cpu_clk", "ddrclk", "powersave"; }; |