netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] net: phy: corrected the return value for genphy_check_and_restart_aneg
@ 2020-02-25 12:22 Sudheesh Mavila
  2020-02-25 12:38 ` Russell King - ARM Linux admin
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Sudheesh Mavila @ 2020-02-25 12:22 UTC (permalink / raw)
  To: sudheesh.mavila, andrew, f.fainelli, hkallweit1, linux, davem,
	netdev, linux-kernel

When auto-negotiation is not required, return value should be zero.

Signed-off-by: Sudheesh Mavila <sudheesh.mavila@amd.com>
---
 drivers/net/phy/phy_device.c | 9 ++++++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/drivers/net/phy/phy_device.c b/drivers/net/phy/phy_device.c
index 6a5056e0ae77..36cde3dac4c3 100644
--- a/drivers/net/phy/phy_device.c
+++ b/drivers/net/phy/phy_device.c
@@ -1806,10 +1806,13 @@ int genphy_check_and_restart_aneg(struct phy_device *phydev, bool restart)
 			restart = true;
 	}
 
-	if (restart)
-		ret = genphy_restart_aneg(phydev);
+	/* Only restart aneg if we are advertising something different
+	 * than we were before.
+	 */
+	if (restart > 0)
+		return genphy_restart_aneg(phydev);
 
-	return ret;
+	return 0;
 }
 EXPORT_SYMBOL(genphy_check_and_restart_aneg);
 
-- 
2.17.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-02-25 13:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-02-25 12:22 [PATCH] net: phy: corrected the return value for genphy_check_and_restart_aneg Sudheesh Mavila
2020-02-25 12:38 ` Russell King - ARM Linux admin
2020-02-25 13:28 ` Andrew Lunn
2020-02-25 13:59 ` Heiner Kallweit

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).