diff options
Diffstat (limited to 'arch/m68knommu/platform/68360/ints.c')
-rw-r--r-- | arch/m68knommu/platform/68360/ints.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/arch/m68knommu/platform/68360/ints.c b/arch/m68knommu/platform/68360/ints.c index 6f22970d8c20..ad96ab1051f0 100644 --- a/arch/m68knommu/platform/68360/ints.c +++ b/arch/m68knommu/platform/68360/ints.c | |||
@@ -132,10 +132,8 @@ void init_IRQ(void) | |||
132 | pquicc->intr_cimr = 0x00000000; | 132 | pquicc->intr_cimr = 0x00000000; |
133 | 133 | ||
134 | for (i = 0; (i < NR_IRQS); i++) { | 134 | for (i = 0; (i < NR_IRQS); i++) { |
135 | irq_desc[i].status = IRQ_DISABLED; | 135 | set_irq_chip(irq, &intc_irq_chip); |
136 | irq_desc[i].action = NULL; | 136 | set_irq_handler(irq, handle_level_irq); |
137 | irq_desc[i].depth = 1; | ||
138 | irq_desc[i].chip = &intc_irq_chip; | ||
139 | } | 137 | } |
140 | } | 138 | } |
141 | 139 | ||