diff options
author | Felipe Balbi <balbi@ti.com> | 2014-09-08 20:54:52 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2014-09-11 16:05:41 -0400 |
commit | 2aced8924638104d1e09ebb86f87f6ca265d325b (patch) | |
tree | ce807ce0737be9477fdf8b747fb038d672e62cb5 /arch/arm/mach-omap2 | |
parent | 05f1e7387c21b7075bed6ae7e7412435a7002fe4 (diff) |
arm: omap: irq: drop omap2_intc_handle_irq()
that was just a no-op wrapper around omap_intc_handle_irq
anyway.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2')
-rw-r--r-- | arch/arm/mach-omap2/common.h | 1 | ||||
-rw-r--r-- | arch/arm/mach-omap2/irq.c | 16 |
2 files changed, 6 insertions, 11 deletions
diff --git a/arch/arm/mach-omap2/common.h b/arch/arm/mach-omap2/common.h index 7d689d230e8c..180009343adb 100644 --- a/arch/arm/mach-omap2/common.h +++ b/arch/arm/mach-omap2/common.h | |||
@@ -219,7 +219,6 @@ void omap_intc_restore_context(void); | |||
219 | void omap3_intc_suspend(void); | 219 | void omap3_intc_suspend(void); |
220 | void omap3_intc_prepare_idle(void); | 220 | void omap3_intc_prepare_idle(void); |
221 | void omap3_intc_resume_idle(void); | 221 | void omap3_intc_resume_idle(void); |
222 | void omap2_intc_handle_irq(struct pt_regs *regs); | ||
223 | void omap_gic_of_init(void); | 222 | void omap_gic_of_init(void); |
224 | 223 | ||
225 | #ifdef CONFIG_CACHE_L2X0 | 224 | #ifdef CONFIG_CACHE_L2X0 |
diff --git a/arch/arm/mach-omap2/irq.c b/arch/arm/mach-omap2/irq.c index 4dfeac6f2f65..14716a88d22d 100644 --- a/arch/arm/mach-omap2/irq.c +++ b/arch/arm/mach-omap2/irq.c | |||
@@ -234,7 +234,8 @@ static void __init omap_init_irq(u32 base, int nr_irqs, | |||
234 | omap_alloc_gc(omap_irq_base + j, j + irq_base, 32); | 234 | omap_alloc_gc(omap_irq_base + j, j + irq_base, 32); |
235 | } | 235 | } |
236 | 236 | ||
237 | static inline void omap_intc_handle_irq(struct pt_regs *regs) | 237 | static asmlinkage void __exception_irq_entry |
238 | omap_intc_handle_irq(struct pt_regs *regs) | ||
238 | { | 239 | { |
239 | u32 irqnr; | 240 | u32 irqnr; |
240 | int handled_irq = 0; | 241 | int handled_irq = 0; |
@@ -276,27 +277,22 @@ out: | |||
276 | omap_ack_irq(NULL); | 277 | omap_ack_irq(NULL); |
277 | } | 278 | } |
278 | 279 | ||
279 | asmlinkage void __exception_irq_entry omap2_intc_handle_irq(struct pt_regs *regs) | ||
280 | { | ||
281 | omap_intc_handle_irq(regs); | ||
282 | } | ||
283 | |||
284 | void __init omap2_init_irq(void) | 280 | void __init omap2_init_irq(void) |
285 | { | 281 | { |
286 | omap_init_irq(OMAP24XX_IC_BASE, 96, NULL); | 282 | omap_init_irq(OMAP24XX_IC_BASE, 96, NULL); |
287 | set_handle_irq(omap2_intc_handle_irq); | 283 | set_handle_irq(omap_intc_handle_irq); |
288 | } | 284 | } |
289 | 285 | ||
290 | void __init omap3_init_irq(void) | 286 | void __init omap3_init_irq(void) |
291 | { | 287 | { |
292 | omap_init_irq(OMAP34XX_IC_BASE, 96, NULL); | 288 | omap_init_irq(OMAP34XX_IC_BASE, 96, NULL); |
293 | set_handle_irq(omap2_intc_handle_irq); | 289 | set_handle_irq(omap_intc_handle_irq); |
294 | } | 290 | } |
295 | 291 | ||
296 | void __init ti81xx_init_irq(void) | 292 | void __init ti81xx_init_irq(void) |
297 | { | 293 | { |
298 | omap_init_irq(OMAP34XX_IC_BASE, 128, NULL); | 294 | omap_init_irq(OMAP34XX_IC_BASE, 128, NULL); |
299 | set_handle_irq(omap2_intc_handle_irq); | 295 | set_handle_irq(omap_intc_handle_irq); |
300 | } | 296 | } |
301 | 297 | ||
302 | static int __init intc_of_init(struct device_node *node, | 298 | static int __init intc_of_init(struct device_node *node, |
@@ -318,7 +314,7 @@ static int __init intc_of_init(struct device_node *node, | |||
318 | 314 | ||
319 | omap_init_irq(res.start, nr_irq, of_node_get(node)); | 315 | omap_init_irq(res.start, nr_irq, of_node_get(node)); |
320 | 316 | ||
321 | set_handle_irq(omap2_intc_handle_irq); | 317 | set_handle_irq(omap_intc_handle_irq); |
322 | 318 | ||
323 | return 0; | 319 | return 0; |
324 | } | 320 | } |