aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Fedrau <[email protected]>2024-02-18 08:57:47 +0100
committerJakub Kicinski <[email protected]>2024-02-21 14:56:59 -0800
commit3810e029e23e220487c33f77b56a762ef1dc8ff3 (patch)
tree5a31df30b62f082fbf7dc4efbebe83cd716774ae
parent560d9a39aeb08ba7989eb15cd9b52f9fa343d9a3 (diff)
net: phy: marvell-88q2xxx: make mv88q2xxx_config_aneg generic
Marvell 88Q2xxx devices follow the same scheme, after configuration they need a soft reset. Soft resets differ between devices, so we use the .soft_reset callback instead of creating .config_aneg callbacks for each device. Reviewed-by: Andrew Lunn <[email protected]> Signed-off-by: Dimitri Fedrau <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jakub Kicinski <[email protected]>
-rw-r--r--drivers/net/phy/marvell-88q2xxx.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/phy/marvell-88q2xxx.c b/drivers/net/phy/marvell-88q2xxx.c
index 11963d8176b2..5bc36cc68a20 100644
--- a/drivers/net/phy/marvell-88q2xxx.c
+++ b/drivers/net/phy/marvell-88q2xxx.c
@@ -365,7 +365,7 @@ static int mv88q2xxx_config_aneg(struct phy_device *phydev)
if (ret)
return ret;
- return mv88q2xxx_soft_reset(phydev);
+ return phydev->drv->soft_reset(phydev);
}
static int mv88q2xxx_config_init(struct phy_device *phydev)