[PATCH] m68k/HP300: HP LANCE updates
- 7990: request_irq() should have SA_SHIRQ flag set - hplance_init() printed dev->name before register_netdev() had filled it in Signed-off-by: Kars de Jong <jongk@linux-m68k.org> Signed-off-by: Geert Uytterhoeven <geert@linux-m68k.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
committed by
Linus Torvalds
parent
99b48cff40
commit
8e8858e932
@@ -500,7 +500,7 @@ int lance_open (struct net_device *dev)
|
||||
int res;
|
||||
|
||||
/* Install the Interrupt handler. Or we could shunt this out to specific drivers? */
|
||||
if (request_irq(lp->irq, lance_interrupt, 0, lp->name, dev))
|
||||
if (request_irq(lp->irq, lance_interrupt, SA_SHIRQ, lp->name, dev))
|
||||
return -EAGAIN;
|
||||
|
||||
res = lance_reset(dev);
|
||||
|
Reference in New Issue
Block a user