diff options
author | Fabio Estevam <fabio.estevam@freescale.com> | 2013-02-11 09:01:47 -0500 |
---|---|---|
committer | Shawn Guo <shawn.guo@linaro.org> | 2013-03-03 21:07:20 -0500 |
commit | f26b016e7aeeebe793eb03e609baac80e1b02947 (patch) | |
tree | 61d6eec62933300a717bf028b8b7094bab9e4cf0 /arch | |
parent | bb39cdc52f4278614579c1041155a7b182f47e75 (diff) |
ARM: mxs: icoll: Fix sparse warning
Fix the following sparse warning:
arch/arm/mach-mxs/icoll.c:103:13: warning: symbol 'icoll_of_init' 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>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-mxs/icoll.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-mxs/icoll.c b/arch/arm/mach-mxs/icoll.c index 8fb23af154b3..e26eeba46598 100644 --- a/arch/arm/mach-mxs/icoll.c +++ b/arch/arm/mach-mxs/icoll.c | |||
@@ -100,7 +100,7 @@ static struct irq_domain_ops icoll_irq_domain_ops = { | |||
100 | .xlate = irq_domain_xlate_onecell, | 100 | .xlate = irq_domain_xlate_onecell, |
101 | }; | 101 | }; |
102 | 102 | ||
103 | void __init icoll_of_init(struct device_node *np, | 103 | static void __init icoll_of_init(struct device_node *np, |
104 | struct device_node *interrupt_parent) | 104 | struct device_node *interrupt_parent) |
105 | { | 105 | { |
106 | /* | 106 | /* |