mirror of
https://github.com/torvalds/linux.git
synced 2026-05-27 08:33:17 +02:00
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 <andrew@lunn.ch> Signed-off-by: Dimitri Fedrau <dima.fedrau@gmail.com> Link: https://lore.kernel.org/r/20240218075753.18067-11-dima.fedrau@gmail.com Signed-off-by: Jakub Kicinski <kuba@kernel.org>
This commit is contained in:
parent
560d9a39ae
commit
3810e029e2
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user