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 60d5d2bc714a7737a97384b017b8eb4516b144e1..aa9480d4aa05931fcb8248cc9c47c4f374d00879 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 59764d6c5f418b9ae074cb84145f6421019bca7f..aa0fd0893585bb545b5ac68d58c83c7740446bff 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);
        }