2
0
mirror of https://github.com/xcat2/xNBA.git synced 2025-01-18 21:43:14 +00:00

Master IRQ should be EOIed first, I think.

This commit is contained in:
Michael Brown 2007-07-10 04:33:59 +01:00
parent 19871cbb96
commit 4e14b020a5

View File

@ -46,11 +46,11 @@ static inline void send_nonspecific_eoi ( unsigned int irq ) {
*/
static inline void send_specific_eoi ( unsigned int irq ) {
DBG ( "Sending specific EOI for IRQ %d\n", irq );
outb ( ( ICR_EOI_SPECIFIC | ICR_VALUE ( irq ) ), ICR_REG ( irq ) );
if ( irq >= IRQ_PIC_CUTOFF ) {
outb ( ( ICR_EOI_SPECIFIC | ICR_VALUE ( CHAINED_IRQ ) ),
ICR_REG ( CHAINED_IRQ ) );
}
outb ( ( ICR_EOI_SPECIFIC | ICR_VALUE ( irq ) ), ICR_REG ( irq ) );
}
/**