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: Ajit Khaparde <ajit.khaparde@emulex.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Ajit Khaparde 2011-04-06 18:08:43 +00:00 committed by David S. Miller
parent 48f5a19168
commit 5784186919
1 changed files with 2 additions and 2 deletions

View File

@ -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);
}