summaryrefslogtreecommitdiffstats
path: root/drivers/clk/clk.c
diff options
context:
space:
mode:
authorStephen Boyd <sboyd@codeaurora.org>2015-05-01 21:16:14 +0200
committerStephen Boyd <sboyd@codeaurora.org>2015-05-15 02:11:17 +0200
commit562ef0b098552970fd25e9c960691e6c2bcb1181 (patch)
treec68693efd81e4cf2988d96cd9d60f095ec2309d3 /drivers/clk/clk.c
parentclk: gpio-gate: Don't export __init functions (diff)
downloadlinux-562ef0b098552970fd25e9c960691e6c2bcb1181.tar.xz
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.c1
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"