The patch titled Amiga PCMCIA NE2000 Ethernet dev->irq init has been added to the -mm tree. Its filename is amiga-pcmcia-ne2000-ethernet-dev-irq-init.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Amiga PCMCIA NE2000 Ethernet dev->irq init From: Kars de Jong <jongk@xxxxxxxxxxxxxx> Amiga PCMCIA NE2000 Ethernet: Add missing initialization of dev->irq Signed-off-by: Kars de Jong <jongk@xxxxxxxxxxxxxx> Signed-off-by: Geert Uytterhoeven <geert@xxxxxxxxxxxxxx> Cc: Jeff Garzik <jeff@xxxxxxxxxx> Cc: Dominik Brodowski <linux@xxxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/net/apne.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN drivers/net/apne.c~amiga-pcmcia-ne2000-ethernet-dev-irq-init drivers/net/apne.c --- a/drivers/net/apne.c~amiga-pcmcia-ne2000-ethernet-dev-irq-init +++ a/drivers/net/apne.c @@ -311,9 +311,10 @@ static int __init apne_probe1(struct net #endif dev->base_addr = ioaddr; + dev->irq = IRQ_AMIGA_PORTS; /* Install the Interrupt handler */ - i = request_irq(IRQ_AMIGA_PORTS, apne_interrupt, IRQF_SHARED, DRV_NAME, dev); + i = request_irq(dev->irq, apne_interrupt, IRQF_SHARED, DRV_NAME, dev); if (i) return i; for(i = 0; i < ETHER_ADDR_LEN; i++) { _ Patches currently in -mm which might be from jongk@xxxxxxxxxxxxxx are m68k-hp300-hp-lance-updates.patch amiga-pcmcia-ne2000-ethernet-dev-irq-init.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