]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
e1000e: release hw semaphore after successfully writing EEPROM
authorArthur Jones <ajones@riverbed.com>
Mon, 29 Sep 2008 11:51:09 +0000 (11:51 +0000)
committerDavid S. Miller <davem@davemloft.net>
Wed, 8 Oct 2008 23:47:58 +0000 (16:47 -0700)
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: Nick Van Fossen <Nick.VanFossen@riverbed.com>
Signed-off-by: Arthur Jones <ajones@riverbed.com>
Reviewed-by: Auke Kok <auke-jan.h.kok@intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/e1000e/lib.c

index c7337306ffa7db55cd1aa54fd4b1c42bbb4f76c8..089578f6855a21500188034b6f4fd09809658dfc 100644 (file)
@@ -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;
 }