|
@@ -4538,8 +4538,7 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
|
|
|
/* Allow time for pending master requests to run */
|
|
|
e1000e_disable_pcie_master(&adapter->hw);
|
|
|
|
|
|
- if ((adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) &&
|
|
|
- !(hw->mac.ops.check_mng_mode(hw))) {
|
|
|
+ if (adapter->flags2 & FLAG2_HAS_PHY_WAKEUP) {
|
|
|
/* enable wakeup by the PHY */
|
|
|
retval = e1000_init_phy_wakeup(adapter, wufc);
|
|
|
if (retval)
|
|
@@ -4557,7 +4556,8 @@ static int __e1000_shutdown(struct pci_dev *pdev, bool *enable_wake)
|
|
|
*enable_wake = !!wufc;
|
|
|
|
|
|
/* make sure adapter isn't asleep if manageability is enabled */
|
|
|
- if (adapter->flags & FLAG_MNG_PT_ENABLED)
|
|
|
+ if ((adapter->flags & FLAG_MNG_PT_ENABLED) ||
|
|
|
+ (hw->mac.ops.check_mng_mode(hw)))
|
|
|
*enable_wake = true;
|
|
|
|
|
|
if (adapter->hw.phy.type == e1000_phy_igp_3)
|