Commit 49230b49 authored by Aaro Koskinen's avatar Aaro Koskinen Committed by Greg Kroah-Hartman
Browse files

staging: octeon: fix broken phylib usage



Commit 2b3e88ea ("net: phy: improve phy state checking")
added checks for phylib usage, and this triggers with OCTEON ethernet
and results in broken networking.

Fix by replacing phy_start_aneg() with phy_start().

Fixes: 2b3e88ea ("net: phy: improve phy state checking")
Signed-off-by: default avatarAaro Koskinen <aaro.koskinen@iki.fi>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f17b5f06
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -170,7 +170,7 @@ int cvm_oct_phy_setup_device(struct net_device *dev)
		return -ENODEV;

	priv->last_link = 0;
	phy_start_aneg(phydev);
	phy_start(phydev);

	return 0;
no_phy: