Message ID | 20220616041226.26996-5-Raju.Lakkaraju@microchip.com (mailing list archive) |
---|---|
State | Accepted |
Commit | 311abcdddc00aa733211fb3e92815155066896e1 |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: lan743x: PCI11010 / PCI11414 devices Enhancements | expand |
\On Thu, Jun 16, 2022 at 09:42:26AM +0530, Raju Lakkaraju wrote: > Add support to Master-Slave configuration and state > > Signed-off-by: Raju Lakkaraju <Raju.Lakkaraju@microchip.com> > --- > Changes: > V0 -> V1: > 1. Remove the gpy_master_slave_cfg_get() function and use the > genphy_read_master_slave() funtion. So much easier isn't it to make use of existing helpers. Reviewed-by: Andrew Lunn <andrew@lunn.ch> Andrew
diff --git a/drivers/net/phy/mxl-gpy.c b/drivers/net/phy/mxl-gpy.c index 5ce1bf03bbd7..6c4da2f9e90a 100644 --- a/drivers/net/phy/mxl-gpy.c +++ b/drivers/net/phy/mxl-gpy.c @@ -295,6 +295,9 @@ static void gpy_update_interface(struct phy_device *phydev) ret); break; } + + if (phydev->speed == SPEED_2500 || phydev->speed == SPEED_1000) + genphy_read_master_slave(phydev); } static int gpy_read_status(struct phy_device *phydev)
Add support to Master-Slave configuration and state Signed-off-by: Raju Lakkaraju <Raju.Lakkaraju@microchip.com> --- Changes: V0 -> V1: 1. Remove the gpy_master_slave_cfg_get() function and use the genphy_read_master_slave() funtion. drivers/net/phy/mxl-gpy.c | 3 +++ 1 file changed, 3 insertions(+)