diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 09:07:16 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-03-19 15:58:41 -0400 |
commit | 30ee400614385ac49f4c9b4bc03d77ff8f07a61e (patch) | |
tree | a23fbe28983088001b2060833200000255e564a1 /drivers/clk/mxs | |
parent | a937536b868b8369b98967929045f1df54234323 (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 <fabio.estevam@freescale.com>
Acked-by: Shawn Guo <shawn.guo@linaro.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/mxs')
-rw-r--r-- | drivers/clk/mxs/clk.c | 1 |
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 @@ | |||
13 | #include <linux/io.h> | 13 | #include <linux/io.h> |
14 | #include <linux/jiffies.h> | 14 | #include <linux/jiffies.h> |
15 | #include <linux/spinlock.h> | 15 | #include <linux/spinlock.h> |
16 | #include "clk.h" | ||
16 | 17 | ||
17 | DEFINE_SPINLOCK(mxs_lock); | 18 | DEFINE_SPINLOCK(mxs_lock); |
18 | 19 | ||