From: Fabio Estevam Date: Mon, 25 Mar 2013 12:20:37 +0000 (-0300) Subject: ARM: mach-imx: clk-busy: Staticize clk_busy_mux_ops X-Git-Tag: v3.10-rc1~126^2~9^2~7 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e6d7e6ca953405dfd80c5fb72e3359c1633c0c43;p=platform%2Fupstream%2Fkernel-adaptation-pc.git ARM: mach-imx: clk-busy: Staticize clk_busy_mux_ops Fix the following sparse warning: arch/arm/mach-imx/clk-busy.c:150:16: warning: symbol 'clk_busy_mux_ops' was not declared. Should it be static? Signed-off-by: Fabio Estevam Signed-off-by: Shawn Guo --- diff --git a/arch/arm/mach-imx/clk-busy.c b/arch/arm/mach-imx/clk-busy.c index 1ab91b5..6809c99 100644 --- a/arch/arm/mach-imx/clk-busy.c +++ b/arch/arm/mach-imx/clk-busy.c @@ -147,7 +147,7 @@ static int clk_busy_mux_set_parent(struct clk_hw *hw, u8 index) return ret; } -struct clk_ops clk_busy_mux_ops = { +static struct clk_ops clk_busy_mux_ops = { .get_parent = clk_busy_mux_get_parent, .set_parent = clk_busy_mux_set_parent, };