irq_chip.end got obsolete with the removal of __do_IRQ() Signed-off-by: Thomas Gleixner Cc: Benjamin Herrenschmidt --- arch/powerpc/platforms/82xx/pq2ads-pci-pic.c | 1 - arch/powerpc/sysdev/tsi108_pci.c | 13 ------------- 2 files changed, 14 deletions(-) Index: linux-2.6-tip/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c =================================================================== --- linux-2.6-tip.orig/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c +++ linux-2.6-tip/arch/powerpc/platforms/82xx/pq2ads-pci-pic.c @@ -71,7 +71,6 @@ static void pq2ads_pci_unmask_irq(unsign static struct irq_chip pq2ads_pci_ic = { .name = "PQ2 ADS PCI", - .end = pq2ads_pci_unmask_irq, .mask = pq2ads_pci_mask_irq, .mask_ack = pq2ads_pci_mask_irq, .ack = pq2ads_pci_mask_irq, Index: linux-2.6-tip/arch/powerpc/sysdev/tsi108_pci.c =================================================================== --- linux-2.6-tip.orig/arch/powerpc/sysdev/tsi108_pci.c +++ linux-2.6-tip/arch/powerpc/sysdev/tsi108_pci.c @@ -358,18 +358,6 @@ static void tsi108_pci_irq_ack(u_int irq tsi108_pci_int_mask(irq); } -static void tsi108_pci_irq_end(u_int irq) -{ - tsi108_pci_int_unmask(irq); - - /* Enable interrupts from PCI block */ - tsi108_write_reg(TSI108_PCI_OFFSET + TSI108_PCI_IRP_ENABLE, - tsi108_read_reg(TSI108_PCI_OFFSET + - TSI108_PCI_IRP_ENABLE) | - TSI108_PCI_IRP_ENABLE_P_INT); - mb(); -} - /* * Interrupt controller descriptor for cascaded PCI interrupt controller. */ @@ -378,7 +366,6 @@ static struct irq_chip tsi108_pci_irq = .name = "tsi108_PCI_int", .mask = tsi108_pci_irq_disable, .ack = tsi108_pci_irq_ack, - .end = tsi108_pci_irq_end, .unmask = tsi108_pci_irq_enable, }; -- 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/