diff options
Diffstat (limited to 'arch/arm/mach-imx/tzic.c')
-rw-r--r-- | arch/arm/mach-imx/tzic.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-imx/tzic.c b/arch/arm/mach-imx/tzic.c index 8183178d5aa3..7828af4b2022 100644 --- a/arch/arm/mach-imx/tzic.c +++ b/arch/arm/mach-imx/tzic.c | |||
@@ -125,7 +125,7 @@ static __init void tzic_init_gc(int idx, unsigned int irq_start) | |||
125 | irq_setup_generic_chip(gc, IRQ_MSK(32), 0, IRQ_NOREQUEST, 0); | 125 | irq_setup_generic_chip(gc, IRQ_MSK(32), 0, IRQ_NOREQUEST, 0); |
126 | } | 126 | } |
127 | 127 | ||
128 | asmlinkage void __exception_irq_entry tzic_handle_irq(struct pt_regs *regs) | 128 | static void __exception_irq_entry tzic_handle_irq(struct pt_regs *regs) |
129 | { | 129 | { |
130 | u32 stat; | 130 | u32 stat; |
131 | int i, irqofs, handled; | 131 | int i, irqofs, handled; |
@@ -189,6 +189,8 @@ void __init tzic_init_irq(void __iomem *irqbase) | |||
189 | for (i = 0; i < 4; i++, irq_base += 32) | 189 | for (i = 0; i < 4; i++, irq_base += 32) |
190 | tzic_init_gc(i, irq_base); | 190 | tzic_init_gc(i, irq_base); |
191 | 191 | ||
192 | set_handle_irq(tzic_handle_irq); | ||
193 | |||
192 | #ifdef CONFIG_FIQ | 194 | #ifdef CONFIG_FIQ |
193 | /* Initialize FIQ */ | 195 | /* Initialize FIQ */ |
194 | init_FIQ(FIQ_START); | 196 | init_FIQ(FIQ_START); |