diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-11-03 12:11:21 +0000 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-11-03 18:50:05 -0700 |
commit | 7b8e824651c5d2d107627df6eaff025cf17200e4 (patch) | |
tree | 0ed40fde163e5136388c8fe2487c6eabda081f70 /drivers/net/atlx | |
parent | 1c260e49d5407a87e92f28dc020a9f70902841d7 (diff) | |
download | linux-stable-7b8e824651c5d2d107627df6eaff025cf17200e4.tar.gz linux-stable-7b8e824651c5d2d107627df6eaff025cf17200e4.tar.bz2 linux-stable-7b8e824651c5d2d107627df6eaff025cf17200e4.zip |
atl1 : fix panic on load
Its now illegal to call netif_stop_queue() before register_netdev()
Reported-by: Tom Gundersen <teg@jklm.no>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/atlx')
-rw-r--r-- | drivers/net/atlx/atl1.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/atlx/atl1.c b/drivers/net/atlx/atl1.c index 43579b3b24ac..53363108994e 100644 --- a/drivers/net/atlx/atl1.c +++ b/drivers/net/atlx/atl1.c @@ -3043,7 +3043,6 @@ static int __devinit atl1_probe(struct pci_dev *pdev, atl1_pcie_patch(adapter); /* assume we have no link for now */ netif_carrier_off(netdev); - netif_stop_queue(netdev); setup_timer(&adapter->phy_config_timer, atl1_phy_config, (unsigned long)adapter); |