aboutsummaryrefslogtreecommitdiffstats
path: root/arch/mips/lantiq
diff options
context:
space:
mode:
authorJohn Crispin <blogic@openwrt.org>2011-06-09 20:15:21 +0200
committerRalf Baechle <ralf@linux-mips.org>2011-07-20 23:12:12 +0100
commit744120aadd60bc64a79b49681786b5e217dafbc1 (patch)
tree530d7e0c9ba910fc2e4a950f86a41fc1211c7a49 /arch/mips/lantiq
parentMIPS: AR7: Fix trailing semicolon bug in clock.c (diff)
downloadlinux-dev-744120aadd60bc64a79b49681786b5e217dafbc1.tar.xz
linux-dev-744120aadd60bc64a79b49681786b5e217dafbc1.zip
MIPS: Lantiq: Add missing clk_enable and clk_disable functions.
Signed-of-by: John Crispin <blogic@openwrt.org> Cc: linux-mips@linux-mips.org Patchwork: https://patchwork.linux-mips.org/patch/2465/ Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/lantiq')
-rw-r--r--arch/mips/lantiq/clk.c13
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/mips/lantiq/clk.c b/arch/mips/lantiq/clk.c
index 94560899d13e..7e9c0ffc11a5 100644
--- a/arch/mips/lantiq/clk.c
+++ b/arch/mips/lantiq/clk.c
@@ -100,6 +100,19 @@ void clk_put(struct clk *clk)
}
EXPORT_SYMBOL(clk_put);
+int clk_enable(struct clk *clk)
+{
+ /* not used */
+ return 0;
+}
+EXPORT_SYMBOL(clk_enable);
+
+void clk_disable(struct clk *clk)
+{
+ /* not used */
+}
+EXPORT_SYMBOL(clk_disable);
+
static inline u32 ltq_get_counter_resolution(void)
{
u32 res;