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

Commit 1694f25b authored by Arthur Jones's avatar Arthur Jones Committed by David S. Miller
Browse files

e1000e: release hw semaphore after successfully writing EEPROM



Since e1000e has been existance in linux-2.6, we've
never released the hardware semaphore after a successful
write to the SPI EEPROM.  I guess we don't write to
SPI EEPROM much -- but those few of us that do appreciate
it when we can later read from the EEPROM without having
to reboot.

Found-by: default avatarNick Van Fossen <Nick.VanFossen@riverbed.com>
Signed-off-by: default avatarArthur Jones <ajones@riverbed.com>
Reviewed-by: default avatarAuke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2f7ca802
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -2012,6 +2012,7 @@ s32 e1000e_write_nvm_spi(struct e1000_hw *hw, u16 offset, u16 words, u16 *data)
	}

	msleep(10);
	nvm->ops.release_nvm(hw);
	return 0;
}