From: Dimitri Fedrau Date: Sun, 18 Feb 2024 07:57:47 +0000 (+0100) Subject: net: phy: marvell-88q2xxx: make mv88q2xxx_config_aneg generic X-Git-Tag: block-6.9-20240315~27^2~206^2~4 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=3810e029e23e220487c33f77b56a762ef1dc8ff3;p=linux-block.git 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 Signed-off-by: Dimitri Fedrau Link: https://lore.kernel.org/r/20240218075753.18067-11-dima.fedrau@gmail.com Signed-off-by: Jakub Kicinski --- 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)