net-next: stmmac: use SPEED_xxx instead of raw value
Signed-off-by: Corentin Labbe <clabbe.montjoie@gmail.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
50cb16d4fd
commit
afbe17a3ad
@ -802,12 +802,12 @@ static void stmmac_adjust_link(struct net_device *dev)
|
|||||||
if (phydev->speed != priv->speed) {
|
if (phydev->speed != priv->speed) {
|
||||||
new_state = true;
|
new_state = true;
|
||||||
switch (phydev->speed) {
|
switch (phydev->speed) {
|
||||||
case 1000:
|
case SPEED_1000:
|
||||||
if (priv->plat->has_gmac ||
|
if (priv->plat->has_gmac ||
|
||||||
priv->plat->has_gmac4)
|
priv->plat->has_gmac4)
|
||||||
ctrl &= ~priv->hw->link.port;
|
ctrl &= ~priv->hw->link.port;
|
||||||
break;
|
break;
|
||||||
case 100:
|
case SPEED_100:
|
||||||
if (priv->plat->has_gmac ||
|
if (priv->plat->has_gmac ||
|
||||||
priv->plat->has_gmac4) {
|
priv->plat->has_gmac4) {
|
||||||
ctrl |= priv->hw->link.port;
|
ctrl |= priv->hw->link.port;
|
||||||
@ -816,7 +816,7 @@ static void stmmac_adjust_link(struct net_device *dev)
|
|||||||
ctrl &= ~priv->hw->link.port;
|
ctrl &= ~priv->hw->link.port;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case 10:
|
case SPEED_10:
|
||||||
if (priv->plat->has_gmac ||
|
if (priv->plat->has_gmac ||
|
||||||
priv->plat->has_gmac4) {
|
priv->plat->has_gmac4) {
|
||||||
ctrl |= priv->hw->link.port;
|
ctrl |= priv->hw->link.port;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user