9
0
Fork 0

drivers/clk/clk-mux.c: Fix sparse warning

drivers/clk/clk-mux.c:53:16: warning: symbol 'clk_mux_ops' was not declared. Should it be static?

Signed-off-by: Alexander Shiyan <shc_work@mail.ru>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Alexander Shiyan 2014-02-16 11:24:33 +04:00 committed by Sascha Hauer
parent db6f20a1e5
commit 525bc8fc66
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ static int clk_mux_set_parent(struct clk *clk, u8 idx)
return 0;
}
struct clk_ops clk_mux_ops = {
static struct clk_ops clk_mux_ops = {
.get_parent = clk_mux_get_parent,
.set_parent = clk_mux_set_parent,
};