On Fri, 1 Dec 2006, Franck Bui-Huu wrote: > diff --git a/arch/mips/dec/ioasic-irq.c b/arch/mips/dec/ioasic-irq.c > index 269b22b..880ef88 100644 > --- a/arch/mips/dec/ioasic-irq.c > +++ b/arch/mips/dec/ioasic-irq.c > @@ -55,19 +55,12 @@ static inline void ack_ioasic_irq(unsign > fast_iob(); > } > > -static inline void end_ioasic_irq(unsigned int irq) > -{ > - if (!(irq_desc[irq].status & (IRQ_DISABLED | IRQ_INPROGRESS))) > - unmask_ioasic_irq(irq); > -} > - > static struct irq_chip ioasic_irq_type = { > .typename = "IO-ASIC", > .ack = ack_ioasic_irq, > .mask = mask_ioasic_irq, > .mask_ack = ack_ioasic_irq, > .unmask = unmask_ioasic_irq, > - .end = end_ioasic_irq, > }; > > Well, end_ioasic_irq() is called from end_ioasic_dma_irq(), sorry. ;-) Maciej