diff options
author | Magnus Damm <damm@igel.co.jp> | 2009-05-25 04:10:45 -0400 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-26 04:08:45 -0400 |
commit | 61ce5393e4c8914c46ec99cbda76823515109709 (patch) | |
tree | 76d140340d6b690f8ef4c126fc9e20a5bf2eae83 /arch/sh/kernel/cpu | |
parent | df109e630f82de63ec82eebbfec2a57852517f28 (diff) |
sh: remove clk_ops->build_rate_table()
This patch removes the ->build_rate_table() callback,
->recalc() may instead be used for this purpose.
Signed-off-by: Magnus Damm <damm@igel.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu')
-rw-r--r-- | arch/sh/kernel/cpu/clock.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c index 59764d6c5f41..aa0fd0893585 100644 --- a/arch/sh/kernel/cpu/clock.c +++ b/arch/sh/kernel/cpu/clock.c | |||
@@ -138,8 +138,6 @@ void propagate_rate(struct clk *tclk) | |||
138 | list_for_each_entry(clkp, &tclk->children, sibling) { | 138 | list_for_each_entry(clkp, &tclk->children, sibling) { |
139 | if (clkp->ops && clkp->ops->recalc) | 139 | if (clkp->ops && clkp->ops->recalc) |
140 | clkp->rate = clkp->ops->recalc(clkp); | 140 | clkp->rate = clkp->ops->recalc(clkp); |
141 | if (clkp->ops && clkp->ops->build_rate_table) | ||
142 | clkp->ops->build_rate_table(clkp); | ||
143 | 141 | ||
144 | propagate_rate(clkp); | 142 | propagate_rate(clkp); |
145 | } | 143 | } |