Commit 64c7f304 authored by Giuseppe CAVALLARO's avatar Giuseppe CAVALLARO Committed by David S. Miller

stmmac: fix autoneg in set_pauseparam

This patch fixes a bug in the set_pauseparam
function that didn't well manage the ANE
field and returned broken values when use
ethtool -A|-a.
Signed-off-by: default avatarGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 1334cb60
...@@ -234,6 +234,7 @@ stmmac_set_pauseparam(struct net_device *netdev, ...@@ -234,6 +234,7 @@ stmmac_set_pauseparam(struct net_device *netdev,
new_pause |= FLOW_TX; new_pause |= FLOW_TX;
priv->flow_ctrl = new_pause; priv->flow_ctrl = new_pause;
phy->autoneg = pause->autoneg;
if (phy->autoneg) { if (phy->autoneg) {
if (netif_running(netdev)) if (netif_running(netdev))
......
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