aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu
diff options
context:
space:
mode:
authorMagnus Damm <damm@igel.co.jp>2009-05-25 08:10:45 +0000
committerPaul Mundt <lethal@linux-sh.org>2009-05-26 17:08:45 +0900
commit61ce5393e4c8914c46ec99cbda76823515109709 (patch)
tree76d140340d6b690f8ef4c126fc9e20a5bf2eae83 /arch/sh/kernel/cpu
parentsh: use shared frequency tables on sh7785 (diff)
downloadlinux-dev-61ce5393e4c8914c46ec99cbda76823515109709.tar.xz
linux-dev-61ce5393e4c8914c46ec99cbda76823515109709.zip
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.c2
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)
list_for_each_entry(clkp, &tclk->children, sibling) {
if (clkp->ops && clkp->ops->recalc)
clkp->rate = clkp->ops->recalc(clkp);
- if (clkp->ops && clkp->ops->build_rate_table)
- clkp->ops->build_rate_table(clkp);
propagate_rate(clkp);
}