From: Vladimir Oltean <vladimir.oltean@nxp.com> Date: 2021-07-20 17:26:47
The blamed commit was probably not tested on net-next, since it did not
refactor the extra phy id check introduced in commit b856150c8098 ("net:
phy: at803x: mask 1000 Base-X link mode").
Fixes: 8887ca5474bd ("net: phy: at803x: simplify custom phy id matching")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
---
drivers/net/phy/at803x.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
@@ -703,7 +703,7 @@ static int at803x_get_features(struct phy_device *phydev)if(err)returnerr;-if(!at803x_match_phy_id(phydev,ATH8031_PHY_ID))+if(phydev->drv->phy_id!=ATH8031_PHY_ID)return0;/* AR8031/AR8033 have different status registers
From: "Russell King (Oracle)" <linux@armlinux.org.uk> Date: 2021-07-20 17:37:42
On Tue, Jul 20, 2021 at 08:24:33PM +0300, Vladimir Oltean wrote:
The blamed commit was probably not tested on net-next, since it did not
refactor the extra phy id check introduced in commit b856150c8098 ("net:
phy: at803x: mask 1000 Base-X link mode").
Fixes: 8887ca5474bd ("net: phy: at803x: simplify custom phy id matching")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Thanks for catching this and sorry for the breakage - the humidity in
the UK is getting to me (particularly causing tiredness), so I've
obviously missed stuff. :(
Acked-by: Russell King (Oracle) <redacted>
--
RMK's Patch system: https://www.armlinux.org.uk/developer/patches/
FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!
Hello:
This patch was applied to netdev/net-next.git (refs/heads/master):
On Tue, 20 Jul 2021 20:24:33 +0300 you wrote:
The blamed commit was probably not tested on net-next, since it did not
refactor the extra phy id check introduced in commit b856150c8098 ("net:
phy: at803x: mask 1000 Base-X link mode").
Fixes: 8887ca5474bd ("net: phy: at803x: simplify custom phy id matching")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
[...]