|
@@ -94,6 +94,7 @@ irqreturn_t timer_interrupt(int irq, void *dev_id)
|
|
|
|
|
|
do_timer_interrupt_hook();
|
|
do_timer_interrupt_hook();
|
|
|
|
|
|
|
|
+#ifdef CONFIG_MCA
|
|
if (MCA_bus) {
|
|
if (MCA_bus) {
|
|
/* The PS/2 uses level-triggered interrupts. You can't
|
|
/* The PS/2 uses level-triggered interrupts. You can't
|
|
turn them off, nor would you want to (any attempt to
|
|
turn them off, nor would you want to (any attempt to
|
|
@@ -107,6 +108,7 @@ irqreturn_t timer_interrupt(int irq, void *dev_id)
|
|
u8 irq_v = inb_p( 0x61 ); /* read the current state */
|
|
u8 irq_v = inb_p( 0x61 ); /* read the current state */
|
|
outb_p( irq_v|0x80, 0x61 ); /* reset the IRQ */
|
|
outb_p( irq_v|0x80, 0x61 ); /* reset the IRQ */
|
|
}
|
|
}
|
|
|
|
+#endif
|
|
|
|
|
|
return IRQ_HANDLED;
|
|
return IRQ_HANDLED;
|
|
}
|
|
}
|