mirror of https://gitee.com/openkylin/linux.git
ice: Check for bail out condition early
Check for bail out condition before calling ice_aq_sff_eeprom Signed-off-by: Anirudh Venkataramanan <anirudh.venkataramanan@intel.com> Tested-by: Tony Brelinski <tonyx.brelinski@intel.com> Signed-off-by: Tony Nguyen <anthony.l.nguyen@intel.com>
This commit is contained in:
parent
800c1443cb
commit
805f980bfe
|
@ -3926,14 +3926,14 @@ ice_get_module_eeprom(struct net_device *netdev,
|
|||
u8 value = 0;
|
||||
u8 page = 0;
|
||||
|
||||
status = ice_aq_sff_eeprom(hw, 0, addr, offset, page, 0,
|
||||
&value, 1, 0, NULL);
|
||||
if (status)
|
||||
return -EIO;
|
||||
|
||||
if (!ee || !ee->len || !data)
|
||||
return -EINVAL;
|
||||
|
||||
status = ice_aq_sff_eeprom(hw, 0, addr, offset, page, 0, &value, 1, 0,
|
||||
NULL);
|
||||
if (status)
|
||||
return -EIO;
|
||||
|
||||
if (value == ICE_MODULE_TYPE_SFP)
|
||||
is_sfp = true;
|
||||
|
||||
|
|
Loading…
Reference in New Issue