Commit bb24fd6a authored by Joakim Tjernlund's avatar Joakim Tjernlund Committed by David S. Miller

ucc_geth: Add SUPPORTED_MII and SUPPORTED_Autoneg

The driver supports Autoneg and at least MII. Tell the PHY
that to avoid any confusion in the PHY code.
Signed-off-by: default avatarJoakim Tjernlund <Joakim.Tjernlund@transmode.se>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5ae297b0
...@@ -1761,10 +1761,12 @@ static int init_phy(struct net_device *dev) ...@@ -1761,10 +1761,12 @@ static int init_phy(struct net_device *dev)
if (priv->phy_interface == PHY_INTERFACE_MODE_SGMII) if (priv->phy_interface == PHY_INTERFACE_MODE_SGMII)
uec_configure_serdes(dev); uec_configure_serdes(dev);
phydev->supported &= (ADVERTISED_10baseT_Half | phydev->supported &= (SUPPORTED_MII |
ADVERTISED_10baseT_Full | SUPPORTED_Autoneg |
ADVERTISED_100baseT_Half | ADVERTISED_10baseT_Half |
ADVERTISED_100baseT_Full); ADVERTISED_10baseT_Full |
ADVERTISED_100baseT_Half |
ADVERTISED_100baseT_Full);
if (priv->max_speed == SPEED_1000) if (priv->max_speed == SPEED_1000)
phydev->supported |= ADVERTISED_1000baseT_Full; phydev->supported |= ADVERTISED_1000baseT_Full;
......
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