From: Catherine Sullivan Date: Mon, 28 Sep 2015 18:16:59 +0000 (-0400) Subject: i40e: Move error message to debug level X-Git-Tag: v4.1.12-92~189^2~251 X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=5eaba264890af8049883288020ce8c45ef421399;p=users%2Fjedix%2Flinux-maple.git i40e: Move error message to debug level Orabug: 22342532 There is an error coming back from get_phy_capabilities that does not seem to have any functional implications. We will continue looking into why this error message is occurring, but in the meantime, we will move it to debug to avoid confusion. Change-ID: I9091754bf62c066ddedeb249923d85606e2d68ed Signed-off-by: Catherine Sullivan Tested-by: Andrew Bowers Signed-off-by: Jeff Kirsher (cherry picked from commit 52e9689e4ef070eff1e0f9e6e84a8451b86813b5) Signed-off-by: Brian Maly --- diff --git a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c index 44a08d4980f5f..2dd25939e6849 100644 --- a/drivers/net/ethernet/intel/i40e/i40e_ethtool.c +++ b/drivers/net/ethernet/intel/i40e/i40e_ethtool.c @@ -751,9 +751,9 @@ static int i40e_set_settings(struct net_device *netdev, status = i40e_update_link_info(hw); if (status) - netdev_info(netdev, "Updating link info failed with err %s aq_err %s\n", - i40e_stat_str(hw, status), - i40e_aq_str(hw, hw->aq.asq_last_status)); + netdev_dbg(netdev, "Updating link info failed with err %s aq_err %s\n", + i40e_stat_str(hw, status), + i40e_aq_str(hw, hw->aq.asq_last_status)); } else { netdev_info(netdev, "Nothing changed, exiting without setting anything.\n");