aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Balbi <balbi@ti.com>2014-09-08 20:54:43 -0400
committerTony Lindgren <tony@atomide.com>2014-09-11 16:03:42 -0400
commit00b6b031ab527afa2981bdffea7752279a290c26 (patch)
tree9983c6c3d831952ea9ff190d6e673c844caeb35a
parent131b48c061726d4ac98f70a2beae35280a8de5cf (diff)
arm: omap: irq: make intc_of_init static
nobody uses that function outside of this file, so we don't need to expose it. Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
-rw-r--r--arch/arm/mach-omap2/common.h10
-rw-r--r--arch/arm/mach-omap2/irq.c2
2 files changed, 1 insertions, 11 deletions
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h
index 98fe235f6670..34ab9ee9ee43 100644
--- a/arch/arm/mach-omap2/common.h
+++ b/arch/arm/mach-omap2/common.h
@@ -229,16 +229,6 @@ extern void __iomem *omap4_get_l2cache_base(void);
229#endif 229#endif
230 230
231struct device_node; 231struct device_node;
232#ifdef CONFIG_OF
233int __init intc_of_init(struct device_node *node,
234 struct device_node *parent);
235#else
236int __init intc_of_init(struct device_node *node,
237 struct device_node *parent)
238{
239 return 0;
240}
241#endif
242 232
243#ifdef CONFIG_SMP 233#ifdef CONFIG_SMP
244extern void __iomem *omap4_get_scu_base(void); 234extern void __iomem *omap4_get_scu_base(void);
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c
index 480a9a7c8445..fc886e2e0283 100644
--- a/arch/arm/mach-omap2/irq.c
+++ b/arch/arm/mach-omap2/irq.c
@@ -295,7 +295,7 @@ asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs
295 omap_intc_handle_irq(regs); 295 omap_intc_handle_irq(regs);
296} 296}
297 297
298int __init intc_of_init(struct device_node *node, 298static int __init intc_of_init(struct device_node *node,
299 struct device_node *parent) 299 struct device_node *parent)
300{ 300{
301 struct resource res; 301 struct resource res;