Commit 726ecdcf authored by Andy Gospodarek's avatar Andy Gospodarek Committed by Francois Romieu

r8169: fix forced-mode link settings

Allow the r8169 driver to set devices to be full-duplex only when
auto-negotiate is disabled.
Signed-off-by: default avatarAndy Gospodarek <andy@greyhouse.net>
Signed-off-by: default avatarFrancois Romieu <romieu@fr.zoreil.com>
parent 2371408c
...@@ -675,6 +675,9 @@ static int rtl8169_set_speed_xmii(struct net_device *dev, ...@@ -675,6 +675,9 @@ static int rtl8169_set_speed_xmii(struct net_device *dev,
if (duplex == DUPLEX_HALF) if (duplex == DUPLEX_HALF)
auto_nego &= ~(PHY_Cap_10_Full | PHY_Cap_100_Full); auto_nego &= ~(PHY_Cap_10_Full | PHY_Cap_100_Full);
if (duplex == DUPLEX_FULL)
auto_nego &= ~(PHY_Cap_10_Half | PHY_Cap_100_Half);
} }
tp->phy_auto_nego_reg = auto_nego; tp->phy_auto_nego_reg = auto_nego;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment