Skip to content

Commit

Permalink
clk: qoriq: Make local symbol 'static'
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Emil Medve authored and Michael Turquette committed Jan 28, 2015
1 parent 8002cab commit 334680d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/clk/clk-qoriq.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
};
Expand Down

0 comments on commit 334680d

Please sign in to comment.