net: ethernet: Use phy_set_max_speed() to limit advertised speed
Many Ethernet MAC drivers want to limit the PHY to only advertise a maximum speed of 100Mbs or 1Gbps. Rather than using a mask, make use of the helper function phy_set_max_speed(). Signed-off-by: Andrew Lunn <andrew@lunn.ch> Reviewed-by: Florian Fainelli <f.fainelli@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:

committed by
David S. Miller

parent
15d8daf7bc
commit
58056c1e1b
@@ -1946,14 +1946,14 @@ static int fec_enet_mii_probe(struct net_device *ndev)
|
||||
|
||||
/* mask with MAC supported features */
|
||||
if (fep->quirks & FEC_QUIRK_HAS_GBIT) {
|
||||
phy_dev->supported &= PHY_GBIT_FEATURES;
|
||||
phy_set_max_speed(phy_dev, 1000);
|
||||
phy_dev->supported &= ~SUPPORTED_1000baseT_Half;
|
||||
#if !defined(CONFIG_M5272)
|
||||
phy_dev->supported |= SUPPORTED_Pause;
|
||||
#endif
|
||||
}
|
||||
else
|
||||
phy_dev->supported &= PHY_BASIC_FEATURES;
|
||||
phy_set_max_speed(phy_dev, 100);
|
||||
|
||||
phy_dev->advertising = phy_dev->supported;
|
||||
|
||||
|
Reference in New Issue
Block a user