Browse Source

clk: qoriq: Make local symbol 'static'

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>
Emil Medve 10 years ago
parent
commit
334680dd51
1 changed files with 1 additions and 1 deletions
  1. 1 1
      drivers/clk/clk-qoriq.c

+ 1 - 1
drivers/clk/clk-qoriq.c

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