mirror of https://gitee.com/openkylin/linux.git
ixgbe: Fix && vs || typo
"offset" can't be both 0x0 and 0xFFFF so presumably || was intended
instead of &&. That matches with how this check is done in other
functions.
Fixes: 73834aec71
("ixgbe: extend firmware version support")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Tested-by: Andrew Bowers <andrewx.bowers@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
This commit is contained in:
parent
06e3f94947
commit
fd492228d4
|
@ -4087,7 +4087,7 @@ void ixgbe_get_oem_prod_version(struct ixgbe_hw *hw,
|
||||||
hw->eeprom.ops.read(hw, NVM_OEM_PROD_VER_PTR, &offset);
|
hw->eeprom.ops.read(hw, NVM_OEM_PROD_VER_PTR, &offset);
|
||||||
|
|
||||||
/* Return is offset to OEM Product Version block is invalid */
|
/* Return is offset to OEM Product Version block is invalid */
|
||||||
if (offset == 0x0 && offset == NVM_INVALID_PTR)
|
if (offset == 0x0 || offset == NVM_INVALID_PTR)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
/* Read product version block */
|
/* Read product version block */
|
||||||
|
|
Loading…
Reference in New Issue