summaryrefslogtreecommitdiffstats
path: root/arch/sh/kernel/cpu/clock.c
diff options
context:
space:
mode:
Diffstat (limited to 'arch/sh/kernel/cpu/clock.c')
-rw-r--r--arch/sh/kernel/cpu/clock.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/arch/sh/kernel/cpu/clock.c b/arch/sh/kernel/cpu/clock.c
index e3d1de8a46f..7a356de99d7 100644
--- a/arch/sh/kernel/cpu/clock.c
+++ b/arch/sh/kernel/cpu/clock.c
@@ -280,20 +280,6 @@ int clk_set_rate_ex(struct clk *clk, unsigned long rate, int algo_id)
}
EXPORT_SYMBOL_GPL(clk_set_rate_ex);
-void clk_recalc_rate(struct clk *clk)
-{
- unsigned long flags;
-
- if (!clk->ops->recalc)
- return;
-
- spin_lock_irqsave(&clock_lock, flags);
- clk->rate = clk->ops->recalc(clk);
- propagate_rate(clk);
- spin_unlock_irqrestore(&clock_lock, flags);
-}
-EXPORT_SYMBOL_GPL(clk_recalc_rate);
-
int clk_set_parent(struct clk *clk, struct clk *parent)
{
unsigned long flags;