提交 7c0965e6 编写于 作者: T Thomas Bogendoerfer 提交者: Jeff Garzik

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: NThomas Bogendoerfer <tsbogend@alpha.franken.de>
Acked-by: NGrant Grundler <grundler@parisc-linux.org>
Signed-off-by: NJeff Garzik <jgarzik@redhat.com>
上级 d8779845
...@@ -1418,7 +1418,6 @@ static int de_close (struct net_device *dev) ...@@ -1418,7 +1418,6 @@ static int de_close (struct net_device *dev)
de_free_rings(de); de_free_rings(de);
de_adapter_sleep(de); de_adapter_sleep(de);
pci_disable_device(de->pdev);
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册