Commit fde45900 authored by Eric Dumazet's avatar Eric Dumazet Committed by David S. Miller
Browse files

jme: fix panic on load



Its now illegal to call netif_stop_queue() before register_netdev()

Signed-off-by: default avatarEric Dumazet <eric.dumazet@gmail.com>
Cc: Guo-Fu Tseng <cooldavid@cooldavid.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent ce384d91
Loading
Loading
Loading
Loading
+0 −4
Original line number Diff line number Diff line
@@ -2955,11 +2955,7 @@ jme_init_one(struct pci_dev *pdev,
	 * Tell stack that we are not ready to work until open()
	 */
	netif_carrier_off(netdev);
	netif_stop_queue(netdev);

	/*
	 * Register netdev
	 */
	rc = register_netdev(netdev);
	if (rc) {
		pr_err("Cannot register net device\n");