diff options
-rw-r--r-- | arch/sh/include/asm/clock.h | 1 | ||||
-rw-r--r-- | arch/sh/kernel/cpu/clock.c | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/arch/sh/include/asm/clock.h b/arch/sh/include/asm/clock.h index 60d5d2bc714a..aa9480d4aa05 100644 --- a/arch/sh/include/asm/clock.h +++ b/arch/sh/include/asm/clock.h | |||
@@ -16,7 +16,6 @@ struct clk_ops { | |||
16 | int (*set_rate)(struct clk *clk, unsigned long rate, int algo_id); | 16 | int (*set_rate)(struct clk *clk, unsigned long rate, int algo_id); |
17 | int (*set_parent)(struct clk *clk, struct clk *parent); | 17 | int (*set_parent)(struct clk *clk, struct clk *parent); |
18 | long (*round_rate)(struct clk *clk, unsigned long rate); | 18 | long (*round_rate)(struct clk *clk, unsigned long rate); |
19 | void (*build_rate_table)(struct clk *clk); | ||
20 | }; | 19 | }; |
21 | 20 | ||
22 | struct clk { | 21 | struct clk { |
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 | } |