From: Przemyslaw Gierszynski <przemyslaw.gierszyn...@intel.com> NVM acquire function was incorrectly invoked with a read-only access type when intending to perform a write operation to the EEPROM. This commit corrects the access type used during the acquisition of the NVM. The change ensures that the NVM is acquired with write access before attempting to write to the EEPROM, aligning with the intended operation.
Signed-off-by: Przemyslaw Gierszynski <przemyslaw.gierszyn...@intel.com> Signed-off-by: Anatoly Burakov <anatoly.bura...@intel.com> --- drivers/net/ixgbe/base/ixgbe_e610.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/net/ixgbe/base/ixgbe_e610.c b/drivers/net/ixgbe/base/ixgbe_e610.c index ab02b11d6a..b0d55a2411 100644 --- a/drivers/net/ixgbe/base/ixgbe_e610.c +++ b/drivers/net/ixgbe/base/ixgbe_e610.c @@ -2314,7 +2314,7 @@ s32 ixgbe_nvm_recalculate_checksum(struct ixgbe_hw *hw) struct ixgbe_aci_desc desc; s32 status; - status = ixgbe_acquire_nvm(hw, IXGBE_RES_READ); + status = ixgbe_acquire_nvm(hw, IXGBE_RES_WRITE); if (status) return status; -- 2.43.5