Message ID | 1379102992-23662-1-git-send-email-andrew@lunn.ch (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
On Fri, Sep 13, 2013 at 10:09:52PM +0200, Andrew Lunn wrote: > 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> > --- > > Hi Jason > > With the patch "cpufreq: kirkwood-cpufreq: remove device tree parsing > for cpu nodes", e768f350c8c3d4253011282db771f35af37ee59a, we need this > fix, or cpufreq will not work. Please queue this up for -rc2. > > arch/arm/boot/dts/kirkwood.dtsi | 1 + > 1 file changed, 1 insertion(+) Applied to mvebu/fixes thx, Jason.
diff --git a/arch/arm/boot/dts/kirkwood.dtsi b/arch/arm/boot/dts/kirkwood.dtsi index 9809fc1..dc65c5a 100644 --- a/arch/arm/boot/dts/kirkwood.dtsi +++ b/arch/arm/boot/dts/kirkwood.dtsi @@ -11,6 +11,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"; };
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> --- Hi Jason With the patch "cpufreq: kirkwood-cpufreq: remove device tree parsing for cpu nodes", e768f350c8c3d4253011282db771f35af37ee59a, we need this fix, or cpufreq will not work. Please queue this up for -rc2. arch/arm/boot/dts/kirkwood.dtsi | 1 + 1 file changed, 1 insertion(+)