diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/ich8lan.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/ich8lan.c b/src/ich8lan.c index 8586b67..1eb24fe 100644 --- a/src/ich8lan.c +++ b/src/ich8lan.c @@ -286,7 +286,11 @@ static s32 e1000_init_phy_workarounds_pchlan(struct e1000_hw *hw) * so forcibly disable it. */ hw->dev_spec.ich8lan.ulp_state = e1000_ulp_state_unknown; - e1000_disable_ulp_lpt_lp(hw, true); + ret_val = e1000_disable_ulp_lpt_lp(hw, true); + if (ret_val) { + e_warn("Failed to disable ULP\n"); + goto out; + } ret_val = hw->phy.ops.acquire(hw); if (ret_val) { |