Lines Matching refs:first_word
373 int i, max_len, first_word, last_word; in ixgb_get_eeprom() local
393 first_word = eeprom->offset >> 1; in ixgb_get_eeprom()
397 (last_word - first_word + 1), GFP_KERNEL); in ixgb_get_eeprom()
402 for (i = 0; i <= (last_word - first_word); i++) in ixgb_get_eeprom()
403 eeprom_buff[i] = ixgb_get_eeprom_word(hw, (first_word + i)); in ixgb_get_eeprom()
420 int max_len, first_word, last_word; in ixgb_set_eeprom() local
437 first_word = eeprom->offset >> 1; in ixgb_set_eeprom()
448 eeprom_buff[0] = ixgb_read_eeprom(hw, first_word); in ixgb_set_eeprom()
454 eeprom_buff[last_word - first_word] in ixgb_set_eeprom()
459 for (i = 0; i <= (last_word - first_word); i++) in ixgb_set_eeprom()
460 ixgb_write_eeprom(hw, first_word + i, eeprom_buff[i]); in ixgb_set_eeprom()
463 if (first_word <= EEPROM_CHECKSUM_REG) in ixgb_set_eeprom()