diff options
author | Imre Deak <imre.deak@solidboot.com> | 2007-03-06 03:52:01 -0800 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2007-05-09 10:39:29 +0100 |
commit | b1465bf7098fa761962f09a6bb2c0e831af85e63 (patch) | |
tree | 787a20a026d332cb473f4c439e6b34bd2848103d /arch/arm | |
parent | b7cc6d46b4f8157bfc58a6ed143ffa83575e236a (diff) | |
download | talos-op-linux-b1465bf7098fa761962f09a6bb2c0e831af85e63.tar.gz talos-op-linux-b1465bf7098fa761962f09a6bb2c0e831af85e63.zip |
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')
-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) return; clk->rate = clk->parent->rate; + if (unlikely(clk->flags & RATE_PROPAGATES)) + propagate_rate(clk); } /* Propagate rate to children */ |