Print NIC FW version during PF initialization. FW version in dmesg is used to identify and isolate issues. Particularly useful when dmesg is read after reboot.
Reviewed-by: Pawel Kaminski <pawel.kamin...@intel.com> Signed-off-by: Sachin Bahadur <sachin.baha...@intel.com> --- drivers/net/ethernet/intel/ice/ice_main.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/drivers/net/ethernet/intel/ice/ice_main.c b/drivers/net/ethernet/intel/ice/ice_main.c index 1f159b4362ec..71d3d8cfdd1d 100644 --- a/drivers/net/ethernet/intel/ice/ice_main.c +++ b/drivers/net/ethernet/intel/ice/ice_main.c @@ -4568,6 +4568,12 @@ static int ice_init_dev(struct ice_pf *pf) dev_err(dev, "ice_init_hw failed: %d\n", err); return err; } + dev_info(dev, "fw %u.%u.%u api %u.%u.%u nvm %u.%u 0x%08x %u.%u.%u\n", + hw->fw_maj_ver, hw->fw_min_ver, hw->fw_patch, hw->api_maj_ver, + hw->api_min_ver, hw->api_patch, hw->flash.nvm.major, + hw->flash.nvm.minor, hw->flash.nvm.eetrack, + hw->flash.orom.major, hw->flash.orom.build, + hw->flash.orom.patch); /* Some cards require longer initialization times * due to necessity of loading FW from an external source. -- 2.25.1 _______________________________________________ Intel-wired-lan mailing list Intel-wired-lan@osuosl.org https://lists.osuosl.org/mailman/listinfo/intel-wired-lan