]> git.kernelconcepts.de Git - karo-tx-linux.git/blobdiff - arch/i386/kernel/i8259.c
[PATCH] genirq: rename desc->handler to desc->chip
[karo-tx-linux.git] / arch / i386 / kernel / i8259.c
index c1a42feba28667cd8e0b7662aafe0fdb79607a23..3c6063671a9f94b4beabb137539880acdc105054 100644 (file)
@@ -132,7 +132,7 @@ void make_8259A_irq(unsigned int irq)
 {
        disable_irq_nosync(irq);
        io_apic_irqs &= ~(1<<irq);
-       irq_desc[irq].handler = &i8259A_irq_type;
+       irq_desc[irq].chip = &i8259A_irq_type;
        enable_irq(irq);
 }
 
@@ -386,12 +386,12 @@ void __init init_ISA_irqs (void)
                        /*
                         * 16 old-style INTA-cycle interrupts:
                         */
-                       irq_desc[i].handler = &i8259A_irq_type;
+                       irq_desc[i].chip = &i8259A_irq_type;
                } else {
                        /*
                         * 'high' PCI IRQs filled in on demand
                         */
-                       irq_desc[i].handler = &no_irq_type;
+                       irq_desc[i].chip = &no_irq_type;
                }
        }
 }