Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57841869 authored by Ajit Khaparde's avatar Ajit Khaparde Committed by David S. Miller
Browse files

be2net: call FLR after setup wol in be_shutdown



Calling setup_wol after a reset is inconsequential.
The WOL setting should be programmed before FLR.
And yes, FLR does not erase wol information.

Signed-off-by: default avatarAjit Khaparde <ajit.khaparde@emulex.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 48f5a191
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -3191,11 +3191,11 @@ static void be_shutdown(struct pci_dev *pdev)

	netif_device_detach(adapter->netdev);

	be_cmd_reset_function(adapter);

	if (adapter->wol)
		be_setup_wol(adapter, true);

	be_cmd_reset_function(adapter);

	pci_disable_device(pdev);
}