diff options
author | Imre Deak <imre.deak@solidboot.com> | 2007-03-06 06:52:01 -0500 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-09 05:39:29 -0400 |
commit | b1465bf7098fa761962f09a6bb2c0e831af85e63 (patch) | |
tree | 787a20a026d332cb473f4c439e6b34bd2848103d /arch/arm/plat-omap/clock.c | |
parent | b7cc6d46b4f8157bfc58a6ed143ffa83575e236a (diff) |
ARM: OMAP: add SoSSI clock (call propagate_rate for childrens)
Clocks with the follow parent rate mode were not updating their
children at propagate rate time.
Signed-off-by: Imre Deak <imre.deak@solidboot.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/plat-omap/clock.c')
-rw-r--r-- | arch/arm/plat-omap/clock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/plat-omap/clock.c b/arch/arm/plat-omap/clock.c index 3d017b04784b..0a603242f367 100644 --- a/arch/arm/plat-omap/clock.c +++ b/arch/arm/plat-omap/clock.c | |||
@@ -284,6 +284,8 @@ void followparent_recalc(struct clk *clk) | |||
284 | return; | 284 | return; |
285 | 285 | ||
286 | clk->rate = clk->parent->rate; | 286 | clk->rate = clk->parent->rate; |
287 | if (unlikely(clk->flags & RATE_PROPAGATES)) | ||
288 | propagate_rate(clk); | ||
287 | } | 289 | } |
288 | 290 | ||
289 | /* Propagate rate to children */ | 291 | /* Propagate rate to children */ |