mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-27 00:51:35 +00:00
ARM: mach-imx: clk-busy: Staticize clk_busy_mux_ops
Fix the following sparse warning: arch/arm/mach-imx/clk-busy.c:150:16: warning: symbol 'clk_busy_mux_ops' was not declared. Should it be static? Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
This commit is contained in:
parent
bce344eae6
commit
e6d7e6ca95
1 changed files with 1 additions and 1 deletions
|
@ -147,7 +147,7 @@ static int clk_busy_mux_set_parent(struct clk_hw *hw, u8 index)
|
||||||
return ret;
|
return ret;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct clk_ops clk_busy_mux_ops = {
|
static struct clk_ops clk_busy_mux_ops = {
|
||||||
.get_parent = clk_busy_mux_get_parent,
|
.get_parent = clk_busy_mux_get_parent,
|
||||||
.set_parent = clk_busy_mux_set_parent,
|
.set_parent = clk_busy_mux_set_parent,
|
||||||
};
|
};
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue