diff options
author | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 06:05:32 +0900 |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2009-05-12 06:05:32 +0900 |
commit | 007e8363b656768fe3f59c180824ff704680bb25 (patch) | |
tree | d462845472e3d7f10066b4be64c3655ffac3160b /arch/sh/kernel/cpu/sh4a | |
parent | f5c84cf50812c80133e64683d0500b2416d55cb3 (diff) | |
download | blackbird-obmc-linux-007e8363b656768fe3f59c180824ff704680bb25.tar.gz blackbird-obmc-linux-007e8363b656768fe3f59c180824ff704680bb25.zip |
sh: clkfwk: Kill off clk_recalc_rate().
The only user for this is the SH-Mobile r_clk, which is now added as a
root clock and can be kicked via propagate_rate() as usual. Given that,
there is no longer any need for the special clk_recalc_rate(), so we kill
it off.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/kernel/cpu/sh4a')
-rw-r--r-- | arch/sh/kernel/cpu/sh4a/clock-sh7722.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c index 1c41db41de7e..426065b43269 100644 --- a/arch/sh/kernel/cpu/sh4a/clock-sh7722.c +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7722.c @@ -912,7 +912,7 @@ int __init arch_clk_init(void) clk_put(clk); } - clk_recalc_rate(&sh7722_r_clock); /* make sure rate gets propagated */ + propagate_rate(&sh7722_r_clock); /* make sure rate gets propagated */ return 0; } |