diff options
author | Stuart Menefy <stuart.menefy@st.com> | 2007-09-27 22:51:52 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-09-27 22:51:52 -0400 |
commit | 24eb17e0813490497f4d5b2fad218bdba402cece (patch) | |
tree | fecb09cb522f03f47d90b790490e4d7bd6ed5543 | |
parent | 675bd7804cb53998a57f96d4133856c29213cabd (diff) |
sh: clkfwk: Support multi-level clock propagation.
Currently clock propagation only works for one level, but we have some
clocks which need to propagate multiple levels, so make this recursive.
Signed-off-by: Stuart Menefy <stuart.menefy@st.com>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | arch/sh/kernel/cpu/clock.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c index 92807ffa8e20..b5f1e23ed57c 100644 --- a/arch/sh/kernel/cpu/clock.c +++ b/arch/sh/kernel/cpu/clock.c | |||
@@ -83,6 +83,8 @@ static void propagate_rate(struct clk *clk) | |||
83 | continue; | 83 | continue; |
84 | if (likely(clkp->ops && clkp->ops->recalc)) | 84 | if (likely(clkp->ops && clkp->ops->recalc)) |
85 | clkp->ops->recalc(clkp); | 85 | clkp->ops->recalc(clkp); |
86 | if (unlikely(clkp->flags & CLK_RATE_PROPAGATES)) | ||
87 | propagate_rate(clkp); | ||
86 | } | 88 | } |
87 | } | 89 | } |
88 | 90 | ||