alpha: use set_irq_chip and push down __do_IRQ to the machine types
[pandora-kernel.git] / arch / alpha / kernel / sys_dp264.c
index 4026502..147154d 100644 (file)
@@ -302,8 +302,8 @@ init_tsunami_irqs(struct irq_chip * ops, int imin, int imax)
 {
        long i;
        for (i = imin; i <= imax; ++i) {
-               irq_desc[i].status = IRQ_DISABLED | IRQ_LEVEL;
-               irq_desc[i].chip = ops;
+               irq_desc[i].status |= IRQ_LEVEL;
+               set_irq_chip_and_handler(i, ops, alpha_do_IRQ);
        }
 }