aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/b44.c
diff options
context:
space:
mode:
authorMark Lord <lkml@rtr.ca>2005-11-30 22:30:23 +0100
committerFrancois Romieu <romieu@electric-eye.fr.zoreil.com>2005-11-30 22:30:23 +0100
commitd9e2d185bf01e20339158f77c3fca00b02014912 (patch)
tree44cca817c379f9db5bfe457864b51297b5329314 /drivers/net/b44.c
parentRevert "[PATCH] pci_ids.h: remove duplicate entries" (diff)
downloadlinux-dev-d9e2d185bf01e20339158f77c3fca00b02014912.tar.xz
linux-dev-d9e2d185bf01e20339158f77c3fca00b02014912.zip
b44: missing netif_wake_queue() in b44_open()
This patch fixes a problem plaguing Dell notebooks with built-in b44 ethernet: The driver refuses to transmit packets of any kind until after the first 5-second tx_timeout occurs. This bug causes DHCP negotiation to fail (timeout) during installation of Ubuntu Linux. Signed-off-by: Mark Lord <lkml@rtr.ca> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'drivers/net/b44.c')
-rw-r--r--drivers/net/b44.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/net/b44.c b/drivers/net/b44.c
index c53848f787eb..c8d9b4d66704 100644
--- a/drivers/net/b44.c
+++ b/drivers/net/b44.c
@@ -1417,6 +1417,7 @@ static int b44_open(struct net_device *dev)
add_timer(&bp->timer);
b44_enable_ints(bp);
+ netif_start_queue(dev);
out:
return err;
}
@@ -2113,6 +2114,7 @@ static int b44_resume(struct pci_dev *pdev)
add_timer(&bp->timer);
b44_enable_ints(bp);
+ netif_wake_queue(dev);
return 0;
}