Commit 334680dd authored by Emil Medve's avatar Emil Medve Committed by Michael Turquette

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: default avatarEmil Medve <Emilian.Medve@Freescale.com>
Signed-off-by: default avatarMichael Turquette <mturquette@linaro.org>
parent 8002cab6
......@@ -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,
};
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment