aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sh/include/asm/clock.h
diff options
context:
space:
mode:
authorPaul Mundt <lethal@linux-sh.org>2009-05-12 05:18:13 +0900
committerPaul Mundt <lethal@linux-sh.org>2009-05-12 05:18:13 +0900
commit154502e160e02dee7b00ec2149762ae5d48e0bb4 (patch)
tree9ff90db38ca25b7a1a88da887ddc1e522ff8e09b /arch/sh/include/asm/clock.h
parentsh: clkfwk: Consolidate the ALWAYS_ENABLED / NEEDS_INIT mess. (diff)
downloadlinux-dev-154502e160e02dee7b00ec2149762ae5d48e0bb4.tar.xz
linux-dev-154502e160e02dee7b00ec2149762ae5d48e0bb4.zip
sh: clkfwk: Convert SH-Mobile CPUs to use CLK_ENABLE_ON_INIT.
Kill off all of the clk_always_enabled leftovers and use the new flag directly. Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/include/asm/clock.h')
-rw-r--r--arch/sh/include/asm/clock.h16
1 files changed, 0 insertions, 16 deletions
diff --git a/arch/sh/include/asm/clock.h b/arch/sh/include/asm/clock.h
index 246f9ebbed23..e9fced9bd8f5 100644
--- a/arch/sh/include/asm/clock.h
+++ b/arch/sh/include/asm/clock.h
@@ -52,22 +52,6 @@ void clk_recalc_rate(struct clk *);
int clk_register(struct clk *);
void clk_unregister(struct clk *);
-static inline int clk_always_enable(const char *id)
-{
- struct clk *clk;
- int ret;
-
- clk = clk_get(NULL, id);
- if (IS_ERR(clk))
- return PTR_ERR(clk);
-
- ret = clk_enable(clk);
- if (ret)
- clk_put(clk);
-
- return ret;
-}
-
/* the exported API, in addition to clk_set_rate */
/**
* clk_set_rate_ex - set the clock rate for a clock source, with additional parameter