clk: qoriq: Make local symbol 'static'
authorEmil Medve <Emilian.Medve@Freescale.com>
Wed, 21 Jan 2015 10:03:27 +0000 (04:03 -0600)
committerMichael Turquette <mturquette@linaro.org>
Wed, 28 Jan 2015 18:11:39 +0000 (10:11 -0800)
drivers/clk/clk-qoriq.c:59:22: warning: symbol 'cmux_ops' was not declared. Should it be static?

Signed-off-by: Emil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
drivers/clk/clk-qoriq.c

index e25dea919695891419b1fbdab8b5eb583c2d7da1..07936a36857b0254eaeb16842d56ae6b1cba97ef 100644 (file)
@@ -56,7 +56,7 @@ static u8 cmux_get_parent(struct clk_hw *hw)
        return clksel;
 }
 
-const struct clk_ops cmux_ops = {
+static const struct clk_ops cmux_ops = {
        .get_parent = cmux_get_parent,
        .set_parent = cmux_set_parent,
 };