aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorShannon Nelson <shannon.nelson@intel.com>2014-06-03 21:23:17 -0400
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>2014-06-24 21:18:56 -0400
commitcde4cbc7800469c9b8424261b69c45a71a89caf4 (patch)
tree01da79ed2d1b596c68c6a27692c30e93fe32414a
parent278b6f629c8221b06850f43c748d0888d5d15a24 (diff)
i40e: fix a stray print message
This log print message will probably never be seen, but it needs to match the "attempting to rebuild switch\n" log message a few lines above. Change-ID: Ic3f5b4f67568d721cb02e826cf2cb33847f51c11 Signed-off-by: Shannon Nelson <shannon.nelson@intel.com> Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
-rw-r--r--drivers/net/ethernet/intel/i40e/i40e_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/i40e/i40e_main.c b/drivers/net/ethernet/intel/i40e/i40e_main.c
index 4289ff1e84ef..b4278a22382c 100644
--- a/drivers/net/ethernet/intel/i40e/i40e_main.c
+++ b/drivers/net/ethernet/intel/i40e/i40e_main.c
@@ -5775,7 +5775,7 @@ static void i40e_reset_and_rebuild(struct i40e_pf *pf, bool reinit)
5775 } 5775 }
5776 5776
5777 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) { 5777 if (pf->vsi[pf->lan_vsi]->uplink_seid == pf->mac_seid) {
5778 dev_info(&pf->pdev->dev, "attempting to rebuild PF VSI\n"); 5778 dev_dbg(&pf->pdev->dev, "attempting to rebuild PF VSI\n");
5779 /* no VEB, so rebuild only the Main VSI */ 5779 /* no VEB, so rebuild only the Main VSI */
5780 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]); 5780 ret = i40e_add_vsi(pf->vsi[pf->lan_vsi]);
5781 if (ret) { 5781 if (ret) {