diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 12:07:16 -0200 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-03-19 12:58:41 -0700 |
commit | 30ee400614385ac49f4c9b4bc03d77ff8f07a61e (patch) | |
tree | a23fbe28983088001b2060833200000255e564a1 /drivers/clk | |
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')
-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 @@ #include <linux/io.h> #include <linux/jiffies.h> #include <linux/spinlock.h> +#include "clk.h" DEFINE_SPINLOCK(mxs_lock); |