RDMA/nes: Store and print eeprom version
Read and print eeprom version and save it off for later use. Also delete a tab. Signed-off-by: Chien Tung <chien.tin.tung@intel.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
33085bb8da
commit
0eec495ee6
@ -1100,11 +1100,12 @@ struct nes_adapter {
|
||||
u32 wqm_wat;
|
||||
u32 core_clock;
|
||||
u32 firmware_version;
|
||||
u32 eeprom_version;
|
||||
|
||||
u32 nic_rx_eth_route_err;
|
||||
|
||||
u32 et_rx_coalesce_usecs;
|
||||
u32 et_rx_max_coalesced_frames;
|
||||
u32 et_rx_max_coalesced_frames;
|
||||
u32 et_rx_coalesce_usecs_irq;
|
||||
u32 et_rx_max_coalesced_frames_irq;
|
||||
u32 et_pkt_rate_low;
|
||||
|
@ -190,6 +190,11 @@ int nes_read_eeprom_values(struct nes_device *nesdev, struct nes_adapter *nesada
|
||||
nesadapter->firmware_version = (((u32)(u8)(eeprom_data>>8)) << 16) +
|
||||
(u32)((u8)eeprom_data);
|
||||
|
||||
eeprom_data = nes_read16_eeprom(nesdev->regs, next_section_address + 10);
|
||||
printk(PFX "EEPROM version %u.%u\n", (u8)(eeprom_data>>8), (u8)eeprom_data);
|
||||
nesadapter->eeprom_version = (((u32)(u8)(eeprom_data>>8)) << 16) +
|
||||
(u32)((u8)eeprom_data);
|
||||
|
||||
no_fw_rev:
|
||||
/* eeprom is valid */
|
||||
eeprom_offset = nesadapter->software_eeprom_offset;
|
||||
|
Loading…
Reference in New Issue
Block a user