summaryrefslogtreecommitdiffstats
path: root/include/linux/clkdev.h
diff options
context:
space:
mode:
authorStephen Boyd2018-01-03 00:47:07 +0100
committerStephen Boyd2018-01-03 01:12:00 +0100
commit0d4e3d005cb3c7b45463c91b4007d2b9f195879e (patch)
treecf9d730214748944d982853575e4e05219363692 /include/linux/clkdev.h
parentblackfin: Use generic clkdev.h header (diff)
downloadkernel-qcow2-linux-0d4e3d005cb3c7b45463c91b4007d2b9f195879e.tar.gz
kernel-qcow2-linux-0d4e3d005cb3c7b45463c91b4007d2b9f195879e.tar.xz
kernel-qcow2-linux-0d4e3d005cb3c7b45463c91b4007d2b9f195879e.zip
clk: Prepare to remove asm-generic/clkdev.h
Now that all the users of asm/clkdev.h have been replaced with the generic file we can get rid of the asm-generic file as well and implement that code directly where it's used. We only have one caller of __clkdev_alloc(), in clkdev.c so we can easily remove that and drop the include of asm/clkdev.h in linux/clkdev.h by putting the __clk_get/__clk_put inlines in their respective location. Cc: Russell King <linux@armlinux.org.uk> Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'include/linux/clkdev.h')
-rw-r--r--include/linux/clkdev.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/clkdev.h b/include/linux/clkdev.h
index 2eabc862abdb..ef98ee8c6358 100644
--- a/include/linux/clkdev.h
+++ b/include/linux/clkdev.h
@@ -12,7 +12,7 @@
#ifndef __CLKDEV_H
#define __CLKDEV_H
-#include <asm/clkdev.h>
+#include <linux/slab.h>
struct clk;
struct clk_hw;
@@ -55,6 +55,9 @@ int clk_hw_register_clkdev(struct clk_hw *, const char *, const char *);
#ifdef CONFIG_COMMON_CLK
int __clk_get(struct clk *clk);
void __clk_put(struct clk *clk);
+#else
+static inline int __clk_get(struct clk *clk) { return 1; }
+static inline void __clk_put(struct clk *clk) { }
#endif
#endif