From: Rajendra Nayak Date: Fri, 25 Feb 2011 22:48:37 +0000 (-0700) Subject: omap3: dpll: Populate clkops for dpll1_ck X-Git-Tag: v2.6.39-rc1~432^2~10^2^2~19 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=5a2926b8805bc697d47a243dbf2f20de68abe14c;p=karo-tx-linux.git omap3: dpll: Populate clkops for dpll1_ck DPLL1 on omap3 is very similar to the rest of the non-core dpll's. Hence populate clkops_omap3_noncore_dpll_ops as the clkops for it, instead of the currently populated clkops_null. Signed-off-by: Rajendra Nayak Signed-off-by: Paul Walmsley --- diff --git a/arch/arm/mach-omap2/clock3xxx_data.c b/arch/arm/mach-omap2/clock3xxx_data.c index f14d986f0b5d..0cdb8343d658 100644 --- a/arch/arm/mach-omap2/clock3xxx_data.c +++ b/arch/arm/mach-omap2/clock3xxx_data.c @@ -296,7 +296,7 @@ static struct dpll_data dpll1_dd = { static struct clk dpll1_ck = { .name = "dpll1_ck", - .ops = &clkops_null, + .ops = &clkops_omap3_noncore_dpll_ops, .parent = &sys_ck, .dpll_data = &dpll1_dd, .round_rate = &omap2_dpll_round_rate,