Commit e2c57f83 authored by Angus Clark's avatar Angus Clark Committed by David S. Miller

stmmac: fix NULL pointer dereference in capabilities fixup (v2)

Signed-off-by: default avatarAngus Clark <angus.clark@st.com>
Acked-by: default avatarGiuseppe Cavallaro <peppe.cavallaro@st.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 5e6efe88
...@@ -325,7 +325,7 @@ static int stmmac_init_phy(struct net_device *dev) ...@@ -325,7 +325,7 @@ static int stmmac_init_phy(struct net_device *dev)
(interface == PHY_INTERFACE_MODE_RMII))) { (interface == PHY_INTERFACE_MODE_RMII))) {
phydev->supported &= (PHY_BASIC_FEATURES | SUPPORTED_Pause | phydev->supported &= (PHY_BASIC_FEATURES | SUPPORTED_Pause |
SUPPORTED_Asym_Pause); SUPPORTED_Asym_Pause);
priv->phydev->advertising = priv->phydev->supported; phydev->advertising = phydev->supported;
} }
/* /*
......
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