dect
/
linux-2.6
Archived
13
0
Fork 0

[PATCH] 3c574_cs: disable interrupts in el3_close

3c574_cs forgets to disable interrupts during el3_close().
fix it by doing what 3c59x does.

Signed-off-by: Daniel Ritz <daniel.ritz@gmx.ch>
This commit is contained in:
Daniel Ritz 2005-04-10 20:27:45 +02:00 committed by Jeff Garzik
parent 254feb882a
commit b9a6eaffe7
1 changed files with 3 additions and 0 deletions

View File

@ -1274,6 +1274,9 @@ static int el3_close(struct net_device *dev)
spin_lock_irqsave(&lp->window_lock, flags);
update_stats(dev);
spin_unlock_irqrestore(&lp->window_lock, flags);
/* force interrupts off */
outw(SetIntrEnb | 0x0000, ioaddr + EL3_CMD);
}
link->open--;