Skip to content

Commit

Permalink
ARM: OMAP: add SoSSI clock (call propagate_rate for childrens)
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Imre Deak authored and Russell King committed May 9, 2007
1 parent b7cc6d4 commit b1465bf
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions arch/arm/plat-omap/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 */
Expand Down

0 comments on commit b1465bf

Please sign in to comment.