Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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,
};