Skip to content

Commit

Permalink
sh: remove clk_ops->build_rate_table()
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Magnus Damm authored and Paul Mundt committed May 26, 2009
1 parent df109e6 commit 61ce539
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion arch/sh/include/asm/clock.h
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down
2 changes: 0 additions & 2 deletions arch/sh/kernel/cpu/clock.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 61ce539

Please sign in to comment.