Commit a6851c61 authored by Heiner Kallweit's avatar Heiner Kallweit Committed by David S. Miller
Browse files

r8169: remove 1000/Half from supported modes



MAC on the GBit versions supports 1000/Full only, however the PHY
partially claims to support 1000/Half. So let's explicitly remove
this mode.

Signed-off-by: default avatarHeiner Kallweit <hkallweit1@gmail.com>
Reviewed-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 2c1d029a
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -6386,7 +6386,10 @@ static int r8169_phy_connect(struct rtl8169_private *tp)
	if (ret)
		return ret;

	if (!tp->supports_gmii)
	if (tp->supports_gmii)
		phy_remove_link_mode(phydev,
				     ETHTOOL_LINK_MODE_1000baseT_Half_BIT);
	else
		phy_set_max_speed(phydev, SPEED_100);

	phy_support_asym_pause(phydev);