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

Commit fdb359ee authored by Colin Ian King's avatar Colin Ian King Committed by Jeff Kirsher
Browse files

ixgbe: remove redundant check on ret_val



The last check on ret_val is redundant since ret_val has not changed
since the previous check, so remove it as it is extraneous.

Signed-off-by: default avatarColin Ian King <colin.king@canonical.com>
Tested-by: default avatarAndrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 221c556a
Loading
Loading
Loading
Loading
+0 −3
Original line number Diff line number Diff line
@@ -1813,9 +1813,6 @@ static s32 ixgbe_start_hw_82599(struct ixgbe_hw *hw)
	/* We need to run link autotry after the driver loads */
	hw->mac.autotry_restart = true;

	if (ret_val)
		return ret_val;

	return ixgbe_verify_fw_version_82599(hw);
}