Commit f5621a01 authored by Vladimir Oltean's avatar Vladimir Oltean Committed by David S. Miller

net: phy: at803x: finish the phy id checking simplification

The blamed commit was probably not tested on net-next, since it did not
refactor the extra phy id check introduced in commit b856150c ("net:
phy: at803x: mask 1000 Base-X link mode").

Fixes: 8887ca54 ("net: phy: at803x: simplify custom phy id matching")
Signed-off-by: default avatarVladimir Oltean <vladimir.oltean@nxp.com>
Acked-by: default avatarRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 7cefb0b0
......@@ -703,7 +703,7 @@ static int at803x_get_features(struct phy_device *phydev)
if (err)
return err;
if (!at803x_match_phy_id(phydev, ATH8031_PHY_ID))
if (phydev->drv->phy_id != ATH8031_PHY_ID)
return 0;
/* AR8031/AR8033 have different status registers
......
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