The patch titled use struct irq_chip instead of struct hw_interrupt_type has been removed from the -mm tree. Its filename is user-struct-irq_chip-instead-of-struct-hw_interrupt_type.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: use struct irq_chip instead of struct hw_interrupt_type From: "Aneesh Kumar K.V" <aneesh.kumar@xxxxxxxxx> hw_interrupt_type is deprecated in favour of struct irq_chip. [mingo@xxxxxxx: do x86_64 too] Acked-by: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Acked-by: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- arch/i386/kernel/io_apic.c | 2 +- arch/x86_64/kernel/io_apic.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff -puN arch/i386/kernel/io_apic.c~user-struct-irq_chip-instead-of-struct-hw_interrupt_type arch/i386/kernel/io_apic.c --- a/arch/i386/kernel/io_apic.c~user-struct-irq_chip-instead-of-struct-hw_interrupt_type +++ a/arch/i386/kernel/io_apic.c @@ -2594,7 +2594,7 @@ static void set_ht_irq_affinity(unsigned } #endif -static struct hw_interrupt_type ht_irq_chip = { +static struct irq_chip ht_irq_chip = { .name = "PCI-HT", .mask = mask_ht_irq, .unmask = unmask_ht_irq, diff -puN arch/x86_64/kernel/io_apic.c~user-struct-irq_chip-instead-of-struct-hw_interrupt_type arch/x86_64/kernel/io_apic.c --- a/arch/x86_64/kernel/io_apic.c~user-struct-irq_chip-instead-of-struct-hw_interrupt_type +++ a/arch/x86_64/kernel/io_apic.c @@ -1897,7 +1897,7 @@ static void set_ht_irq_affinity(unsigned } #endif -static struct hw_interrupt_type ht_irq_chip = { +static struct irq_chip ht_irq_chip = { .name = "PCI-HT", .mask = mask_ht_irq, .unmask = unmask_ht_irq, _ Patches currently in -mm which might be from aneesh.kumar@xxxxxxxxx are origin.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html