projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bce344e
)
ARM: mach-imx: clk-busy: Staticize clk_busy_mux_ops
author
Fabio Estevam
<fabio.estevam@freescale.com>
Mon, 25 Mar 2013 12:20:37 +0000
(09:20 -0300)
committer
Shawn Guo
<shawn.guo@linaro.org>
Mon, 1 Apr 2013 08:17:51 +0000
(16:17 +0800)
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>
arch/arm/mach-imx/clk-busy.c
patch
|
blob
|
blame
|
history
diff --git
a/arch/arm/mach-imx/clk-busy.c
b/arch/arm/mach-imx/clk-busy.c
index 1ab91b5209e6503e7742450c4dc424a15b2e651c..6809c99abb4063b828c5173831a3911476507803 100644
(file)
--- a/
arch/arm/mach-imx/clk-busy.c
+++ b/
arch/arm/mach-imx/clk-busy.c
@@
-147,7
+147,7
@@
static int clk_busy_mux_set_parent(struct clk_hw *hw, u8 index)
return ret;
}
-struct clk_ops clk_busy_mux_ops = {
+st
atic st
ruct clk_ops clk_busy_mux_ops = {
.get_parent = clk_busy_mux_get_parent,
.set_parent = clk_busy_mux_set_parent,
};