From: Fabio Estevam Date: Mon, 11 Feb 2013 14:07:16 +0000 (-0200) Subject: clk: mxs: Fix sparse warnings X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=30ee400614385ac49f4c9b4bc03d77ff8f07a61e;p=deliverable%2Flinux.git 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 Acked-by: Shawn Guo Signed-off-by: Mike Turquette --- 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 #include #include +#include "clk.h" DEFINE_SPINLOCK(mxs_lock);