aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabio Estevam <[email protected]>2013-02-11 12:07:16 -0200
committerMike Turquette <[email protected]>2013-03-19 12:58:41 -0700
commit30ee400614385ac49f4c9b4bc03d77ff8f07a61e (patch)
treea23fbe28983088001b2060833200000255e564a1
parenta937536b868b8369b98967929045f1df54234323 (diff)
clk: mxs: Fix sparse warnings
Fix the following sparse warnings: drivers/clk/mxs/clk.c:17:1: warning: symbol 'mxs_lock' was not declared. Should it be static? drivers/clk/mxs/clk.c:19:5: warning: symbol 'mxs_clk_wait' was not declared. Should it be static? Signed-off-by: Fabio Estevam <[email protected]> Acked-by: Shawn Guo <[email protected]> Signed-off-by: Mike Turquette <[email protected]>
-rw-r--r--drivers/clk/mxs/clk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/mxs/clk.c b/drivers/clk/mxs/clk.c
index b24d56067c80..5301bce8957b 100644
--- a/drivers/clk/mxs/clk.c
+++ b/drivers/clk/mxs/clk.c
@@ -13,6 +13,7 @@
#include <linux/io.h>
#include <linux/jiffies.h>
#include <linux/spinlock.h>
+#include "clk.h"
DEFINE_SPINLOCK(mxs_lock);