Commit 44033fac authored by Jesse Brandeburg's avatar Jesse Brandeburg Committed by Jeff Kirsher

i40e: refactor send version

This change moves some common code in two places into a
small helper function, and corrects a bug in one of the
two places in the process.

Change-ID: If3bba7152b240f13a7881eb0e8a781655fa66ce7
Signed-off-by: default avatarJesse Brandeburg <jesse.brandeburg@intel.com>
Signed-off-by: default avatarJeff Kirsher <jeffrey.t.kirsher@intel.com>
parent 4f4e17bd
...@@ -5350,6 +5350,22 @@ static int i40e_prep_for_reset(struct i40e_pf *pf) ...@@ -5350,6 +5350,22 @@ static int i40e_prep_for_reset(struct i40e_pf *pf)
return ret; return ret;
} }
/**
* i40e_send_version - update firmware with driver version
* @pf: PF struct
*/
static void i40e_send_version(struct i40e_pf *pf)
{
struct i40e_driver_version dv;
dv.major_version = DRV_VERSION_MAJOR;
dv.minor_version = DRV_VERSION_MINOR;
dv.build_version = DRV_VERSION_BUILD;
dv.subbuild_version = 0;
strncpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
}
/** /**
* i40e_reset_and_rebuild - reset and rebuild using a saved config * i40e_reset_and_rebuild - reset and rebuild using a saved config
* @pf: board private structure * @pf: board private structure
...@@ -5357,7 +5373,6 @@ static int i40e_prep_for_reset(struct i40e_pf *pf) ...@@ -5357,7 +5373,6 @@ static int i40e_prep_for_reset(struct i40e_pf *pf)
**/ **/
static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit) static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
{ {
struct i40e_driver_version dv;
struct i40e_hw *hw = &pf->hw; struct i40e_hw *hw = &pf->hw;
i40e_status ret; i40e_status ret;
u32 v; u32 v;
...@@ -5490,11 +5505,7 @@ static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit) ...@@ -5490,11 +5505,7 @@ static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
} }
/* tell the firmware that we're starting */ /* tell the firmware that we're starting */
dv.major_version = DRV_VERSION_MAJOR; i40e_send_version(pf);
dv.minor_version = DRV_VERSION_MINOR;
dv.build_version = DRV_VERSION_BUILD;
dv.subbuild_version = 0;
i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
dev_info(&pf->pdev->dev, "reset complete\n"); dev_info(&pf->pdev->dev, "reset complete\n");
...@@ -8138,7 +8149,6 @@ static void i40e_print_features(struct i40e_pf *pf) ...@@ -8138,7 +8149,6 @@ static void i40e_print_features(struct i40e_pf *pf)
**/ **/
static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent) static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{ {
struct i40e_driver_version dv;
struct i40e_pf *pf; struct i40e_pf *pf;
struct i40e_hw *hw; struct i40e_hw *hw;
static u16 pfs_found; static u16 pfs_found;
...@@ -8393,12 +8403,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent) ...@@ -8393,12 +8403,7 @@ static int i40e_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
i40e_dbg_pf_init(pf); i40e_dbg_pf_init(pf);
/* tell the firmware that we're starting */ /* tell the firmware that we're starting */
dv.major_version = DRV_VERSION_MAJOR; i40e_send_version(pf);
dv.minor_version = DRV_VERSION_MINOR;
dv.build_version = DRV_VERSION_BUILD;
dv.subbuild_version = 0;
strncpy(dv.driver_string, DRV_VERSION, sizeof(dv.driver_string));
i40e_aq_send_driver_version(&pf->hw, &dv, NULL);
/* since everything's happy, start the service_task timer */ /* since everything's happy, start the service_task timer */
mod_timer(&pf->service_timer, mod_timer(&pf->service_timer,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment