You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On recent kernel versions:
phydev->advertising = phydev->supported
will not work since they are not u32 anymore but bitfields, you should instead use linkmode_* functions to manipulate them, e.g.:
On recent kernel versions:
phydev->advertising = phydev->supported
will not work since they are not u32 anymore but bitfields, you should instead use linkmode_* functions to manipulate them, e.g.:
linkmode_and(phydev->advertising, phydev->advertising, phydev->supported);
linkmode_copy(priv->phy_dev->advertising, priv->phy_dev->supported);
The text was updated successfully, but these errors were encountered: