irq_chip.end got obsolete with the removal of __do_IRQ() Signed-off-by: Thomas Gleixner --- drivers/xen/events.c | 18 ------------------ 1 file changed, 18 deletions(-) Index: linux-next/drivers/xen/events.c =================================================================== --- linux-next.orig/drivers/xen/events.c +++ linux-next/drivers/xen/events.c @@ -551,23 +551,6 @@ static void ack_pirq(unsigned int irq) } } -static void end_pirq(unsigned int irq) -{ - int evtchn = evtchn_from_irq(irq); - struct irq_desc *desc = irq_to_desc(irq); - - if (WARN_ON(!desc)) - return; - - if ((desc->status & (IRQ_DISABLED|IRQ_PENDING)) == - (IRQ_DISABLED|IRQ_PENDING)) { - shutdown_pirq(irq); - } else if (VALID_EVTCHN(evtchn)) { - unmask_evtchn(evtchn); - pirq_unmask_notify(irq); - } -} - static int find_irq_by_gsi(unsigned gsi) { int irq; @@ -1504,7 +1487,6 @@ static struct irq_chip xen_pirq_chip __r .mask = disable_pirq, .ack = ack_pirq, - .end = end_pirq, .set_affinity = set_affinity_irq, -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/