https://bugzilla.novell.com/show_bug.cgi?id=686567 https://bugzilla.novell.com/show_bug.cgi?id=686567#c14 --- Comment #14 from Dieter Jurzitza <dieter.jurzitza@t-online.de> 2011-04-27 20:23:22 UTC --- One more: I did a simple diff between 3c59x.c (11.3) and (11.4) There are many changes - I guess neccessary due to infrastructural modifications. What appears really strange to me is the call to request_irq in both versions: in 11.3 it says: (line 1706) /* Use the now-standard shared IRQ implementation. */ if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ? &boomerang_interrupt : &vortex_interrupt, IRQF_SHARED, dev->name, dev))) { pr_err("%s: Could not reserve IRQ %d\n", dev->name, dev->irq); goto err; } in 11.4 it says: (line 1747) /* Use the now-standard shared IRQ implementation. */ if ((retval = request_irq(dev->irq, vp->full_bus_master_rx ? boomerang_interrupt : vortex_interrupt, IRQF_SHARED, dev->name, dev))) { pr_err("%s: Could not reserve IRQ %d\n", dev->name, dev->irq); goto err; } Please not one refers to pointer boomerang_interrupt:vortex_interrupt, one does not. As the function seems _very_ similar this is irritating me. But I might be wrong ... Take care Dieter Jurzitza -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.