diff options
Diffstat (limited to 'drivers/net/ethernet/intel/igc/igc_i225.c')
| -rw-r--r-- | drivers/net/ethernet/intel/igc/igc_i225.c | 6 | 
1 files changed, 3 insertions, 3 deletions
| diff --git a/drivers/net/ethernet/intel/igc/igc_i225.c b/drivers/net/ethernet/intel/igc/igc_i225.c index 7ec04e48860c..b2ef9fde97b3 100644 --- a/drivers/net/ethernet/intel/igc/igc_i225.c +++ b/drivers/net/ethernet/intel/igc/igc_i225.c @@ -6,7 +6,7 @@  #include "igc_hw.h"  /** - * igc_get_hw_semaphore_i225 - Acquire hardware semaphore + * igc_acquire_nvm_i225 - Acquire exclusive access to EEPROM   * @hw: pointer to the HW structure   *   * Acquire the necessary semaphores for exclusive access to the EEPROM. @@ -229,10 +229,11 @@ static s32 igc_write_nvm_srwr(struct igc_hw *hw, u16 offset, u16 words,  	if (offset >= nvm->word_size || (words > (nvm->word_size - offset)) ||  	    words == 0) {  		hw_dbg("nvm parameter(s) out of bounds\n"); -		goto out; +		return ret_val;  	}  	for (i = 0; i < words; i++) { +		ret_val = -IGC_ERR_NVM;  		eewr = ((offset + i) << IGC_NVM_RW_ADDR_SHIFT) |  			(data[i] << IGC_NVM_RW_REG_DATA) |  			IGC_NVM_RW_REG_START; @@ -254,7 +255,6 @@ static s32 igc_write_nvm_srwr(struct igc_hw *hw, u16 offset, u16 words,  		}  	} -out:  	return ret_val;  } | 
