sh: remove clk_ops->build_rate_table()
authorMagnus Damm <damm@igel.co.jp>
Mon, 25 May 2009 08:10:45 +0000 (08:10 +0000)
committerPaul Mundt <lethal@linux-sh.org>
Tue, 26 May 2009 08:08:45 +0000 (17:08 +0900)
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>
arch/sh/include/asm/clock.h
arch/sh/kernel/cpu/clock.c

index 60d5d2b..aa9480d 100644 (file)
@@ -16,7 +16,6 @@ struct clk_ops {
        int (*set_rate)(struct clk *clk, unsigned long rate, int algo_id);
        int (*set_parent)(struct clk *clk, struct clk *parent);
        long (*round_rate)(struct clk *clk, unsigned long rate);
-       void (*build_rate_table)(struct clk *clk);
 };
 
 struct clk {
index 59764d6..aa0fd08 100644 (file)
@@ -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);
        }