diff options
author | Stephen Boyd <sboyd@codeaurora.org> | 2015-05-01 12:16:14 -0700 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-05-14 17:11:17 -0700 |
commit | 562ef0b098552970fd25e9c960691e6c2bcb1181 (patch) | |
tree | c68693efd81e4cf2988d96cd9d60f095ec2309d3 /drivers/clk/clk.c | |
parent | 2bb5d1b88bb5c8dc929d3a24d5ad327c0281fdbf (diff) | |
download | talos-obmc-linux-562ef0b098552970fd25e9c960691e6c2bcb1181.tar.gz talos-obmc-linux-562ef0b098552970fd25e9c960691e6c2bcb1181.zip |
clk: Silence sparse warnings about __clk_{get,put}()
drivers/clk/clk.c:2700:5: warning: symbol '__clk_get' was not declared. Should it be static?
drivers/clk/clk.c:2713:6: warning: symbol '__clk_put' was not declared. Should it be static?
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 659f2b036cf5..c44623fe9c48 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -21,6 +21,7 @@ #include <linux/device.h> #include <linux/init.h> #include <linux/sched.h> +#include <linux/clkdev.h> #include "clk.h" |