Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit d0939c26 authored by Andrew Lunn's avatar Andrew Lunn Committed by David S. Miller
Browse files

net: ethernet: xgbe: expand PHY_GBIT_FEAUTRES



The macro PHY_GBIT_FEAUTRES needs to change into a bitmap in order to
support link_modes. Remove its use from xgde by replacing it with its
definition.

Probably, the current behavior is wrong. It probably should be
ANDing not assigning.

Signed-off-by: default avatarAndrew Lunn <andrew@lunn.ch>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f954a04e
Loading
Loading
Loading
Loading
+6 −4
Original line number Diff line number Diff line
@@ -878,8 +878,9 @@ static bool xgbe_phy_finisar_phy_quirks(struct xgbe_prv_data *pdata)
	phy_write(phy_data->phydev, 0x04, 0x0d01);
	phy_write(phy_data->phydev, 0x00, 0x9140);

	phy_data->phydev->supported = PHY_GBIT_FEATURES;
	phy_data->phydev->advertising = phy_data->phydev->supported;
	phy_data->phydev->supported = PHY_10BT_FEATURES |
				      PHY_100BT_FEATURES |
				      PHY_1000BT_FEATURES;
	phy_support_asym_pause(phy_data->phydev);

	netif_dbg(pdata, drv, pdata->netdev,
@@ -950,8 +951,9 @@ static bool xgbe_phy_belfuse_phy_quirks(struct xgbe_prv_data *pdata)
	reg = phy_read(phy_data->phydev, 0x00);
	phy_write(phy_data->phydev, 0x00, reg & ~0x00800);

	phy_data->phydev->supported = PHY_GBIT_FEATURES;
	phy_data->phydev->advertising = phy_data->phydev->supported;
	phy_data->phydev->supported = (PHY_10BT_FEATURES |
				       PHY_100BT_FEATURES |
				       PHY_1000BT_FEATURES);
	phy_support_asym_pause(phy_data->phydev);

	netif_dbg(pdata, drv, pdata->netdev,