]> git.kernelconcepts.de Git - karo-tx-linux.git/commit
tulip: Fix dead 21041 ethernet after ifconfig down
authorThomas Bogendoerfer <tsbogend@alpha.franken.de>
Sat, 13 Sep 2008 19:06:42 +0000 (15:06 -0400)
committerJeff Garzik <jgarzik@redhat.com>
Wed, 24 Sep 2008 22:48:52 +0000 (18:48 -0400)
commit7c0965e614f076331bf4628fae005c844d2f1f69
treef85b1facf8cf77f21c9866adf72b7ef868cda878
parentd87798450a7635ab1bcc80271a13ce4a53b016a9
tulip: Fix dead 21041 ethernet after ifconfig down

The de2104x did a pci_disable_device() in it's close function, but
the open function never does a pci_enable_device() and assumes that
the device is already enabled. Considering that downing the interface
is just a temporary thing the pci_disable_device() isn't a pretty good
idea and removing it from the close function just fixes the bug.

Signed-off-by: Thomas Bogendoerfer <tsbogend@alpha.franken.de>
Acked-by: Grant Grundler <grundler@parisc-linux.org>
Signed-off-by: Jeff Garzik <jgarzik@redhat.com>
drivers/net/tulip/de2104x.c