diff options
author | Andreas Bießmann <andreas@biessmann.org> | 2016-08-15 21:04:41 +0200 |
---|---|---|
committer | Andreas Bießmann <andreas@biessmann.org> | 2016-08-15 22:58:03 +0200 |
commit | d51e9a1d04ab77ee26da534172c0c3891dc8ac4f (patch) | |
tree | 8e6188ac824926347c7581f23129ee96445f8f24 /include/clk.h | |
parent | 9e5935c04e891abb38a92a893f3457cdf304ef4f (diff) | |
download | u-boot-d51e9a1d04ab77ee26da534172c0c3891dc8ac4f.tar.gz |
clk.h: inline clk_get_by_name()
Fix compile warning for non OF_CONTROL builds:
---8<---
In file included from /Volumes/devel/u-boot/drivers/gpio/atmel_pio4.c:10:0:
/Volumes/devel/u-boot/include/clk.h:107:12: warning: 'clk_get_by_name' defined but not used [-Wunused-function]
--->8---
Signed-off-by: Andreas Bießmann <andreas@biessmann.org>
Acked-by: Stephen Warren <swarren@nvidia.com>
Diffstat (limited to 'include/clk.h')
-rw-r--r-- | include/clk.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/clk.h b/include/clk.h index 161bc2825f..dc18b0310a 100644 --- a/include/clk.h +++ b/include/clk.h @@ -104,7 +104,7 @@ static inline int clk_get_by_index(struct udevice *dev, int index, return -ENOSYS; } -static int clk_get_by_name(struct udevice *dev, const char *name, +static inline int clk_get_by_name(struct udevice *dev, const char *name, struct clk *clk) { return -ENOSYS; |