stmmac: fix_mac_speed is called during 10/100<->1000 speed changes

This patch modifies the stmmac_adjust_link() function so the
fix_mac_speed() is called not only when link speed is changing
between 10 and 100 Mbps (as required in RMII mode) but also
for 1000 Mbps.

Signed-off-by: Pawel Moll <pawel.moll@st.com>
Signed-off-by: Giuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Pawel Moll 2010-08-23 20:40:40 +00:00 committed by David S. Miller
parent c6a056a349
commit 219dd1132a
1 changed files with 3 additions and 0 deletions

View File

@ -238,6 +238,9 @@ static void stmmac_adjust_link(struct net_device *dev)
case 1000:
if (likely(priv->is_gmac))
ctrl &= ~priv->hw->link.port;
if (likely(priv->fix_mac_speed))
priv->fix_mac_speed(priv->bsp_priv,
phydev->speed);
break;
case 100:
case 10: