summaryrefslogtreecommitdiff
path: root/include/clk.h
diff options
context:
space:
mode:
authorTom Rini <trini@konsulko.com>2016-09-22 15:36:45 -0400
committerTom Rini <trini@konsulko.com>2016-09-22 15:39:11 -0400
commit82f5279b0cd99a9163d34cfe926d0316d9dc0d37 (patch)
tree58f8f0e7c267c50cc715dc7f246ef17859715959 /include/clk.h
parent231af7f95a4e96debeb380bd904ebee60f0bd7bf (diff)
ns16650: Make sure we have CONFIG_CLK set before using infrastructure
We cannot call on the CONFIG_CLK based clk_get_rate function unless CONFIG_CLK is set. Signed-off-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'include/clk.h')
-rw-r--r--include/clk.h25
1 files changed, 12 insertions, 13 deletions
diff --git a/include/clk.h b/include/clk.h
index 94c0037147..7273127bb4 100644
--- a/include/clk.h
+++ b/include/clk.h
@@ -98,19 +98,6 @@ int clk_get_by_index(struct udevice *dev, int index, struct clk *clk);
* @return 0 if OK, or a negative error code.
*/
int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk);
-#else
-static inline int clk_get_by_index(struct udevice *dev, int index,
- struct clk *clk)
-{
- return -ENOSYS;
-}
-
-static inline int clk_get_by_name(struct udevice *dev, const char *name,
- struct clk *clk)
-{
- return -ENOSYS;
-}
-#endif
/**
* clk_request - Request a clock by provider-specific ID.
@@ -175,5 +162,17 @@ int clk_enable(struct clk *clk);
int clk_disable(struct clk *clk);
int soc_clk_dump(void);
+#else
+static inline int clk_get_by_index(struct udevice *dev, int index,
+ struct clk *clk)
+{
+ return -ENOSYS;
+}
+static inline int clk_get_by_name(struct udevice *dev, const char *name,
+ struct clk *clk)
+{
+ return -ENOSYS;
+}
+#endif
#endif