* [Patch net v2] net: phy: LAN87xx: remove genphy_softreset in config_aneg
@ 2022-04-07 4:46 Arun Ramadoss
2022-04-11 10:00 ` patchwork-bot+netdevbpf
0 siblings, 1 reply; 2+ messages in thread
From: Arun Ramadoss @ 2022-04-07 4:46 UTC (permalink / raw)
To: linux-kernel, netdev
Cc: Prasanna Vengateshan, Arun Ramadoss, Paolo Abeni, Jakub Kicinski,
David S. Miller, Russell King, Heiner Kallweit, Andrew Lunn,
UNGLinuxDriver
When the T1 phy master/slave state is changed, at the end of config_aneg
function genphy_softreset is called. After the reset all the registers
configured during the config_init are restored to default value.
To avoid this, removed the genphy_softreset call.
v1->v2
------
Added the author in cc
Fixes: 8a1b415d70b7 ("net: phy: added ethtool master-slave configuration support")
Signed-off-by: Arun Ramadoss <arun.ramadoss@microchip.com>
---
drivers/net/phy/microchip_t1.c | 7 +------
1 file changed, 1 insertion(+), 6 deletions(-)
diff --git a/drivers/net/phy/microchip_t1.c b/drivers/net/phy/microchip_t1.c
index 389df3f4293c..3f79bbbe62d3 100644
--- a/drivers/net/phy/microchip_t1.c
+++ b/drivers/net/phy/microchip_t1.c
@@ -706,7 +706,6 @@ static int lan87xx_read_status(struct phy_device *phydev)
static int lan87xx_config_aneg(struct phy_device *phydev)
{
u16 ctl = 0;
- int rc;
switch (phydev->master_slave_set) {
case MASTER_SLAVE_CFG_MASTER_FORCE:
@@ -722,11 +721,7 @@ static int lan87xx_config_aneg(struct phy_device *phydev)
return -EOPNOTSUPP;
}
- rc = phy_modify_changed(phydev, MII_CTRL1000, CTL1000_AS_MASTER, ctl);
- if (rc == 1)
- rc = genphy_soft_reset(phydev);
-
- return rc;
+ return phy_modify_changed(phydev, MII_CTRL1000, CTL1000_AS_MASTER, ctl);
}
static struct phy_driver microchip_t1_phy_driver[] = {
--
2.33.0
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Patch net v2] net: phy: LAN87xx: remove genphy_softreset in config_aneg
2022-04-07 4:46 [Patch net v2] net: phy: LAN87xx: remove genphy_softreset in config_aneg Arun Ramadoss
@ 2022-04-11 10:00 ` patchwork-bot+netdevbpf
0 siblings, 0 replies; 2+ messages in thread
From: patchwork-bot+netdevbpf @ 2022-04-11 10:00 UTC (permalink / raw)
To: Arun Ramadoss
Cc: linux-kernel, netdev, prasanna.vengateshan, pabeni, kuba, davem,
linux, hkallweit1, andrew, UNGLinuxDriver
Hello:
This patch was applied to netdev/net.git (master)
by David S. Miller <davem@davemloft.net>:
On Thu, 7 Apr 2022 10:16:10 +0530 you wrote:
> When the T1 phy master/slave state is changed, at the end of config_aneg
> function genphy_softreset is called. After the reset all the registers
> configured during the config_init are restored to default value.
> To avoid this, removed the genphy_softreset call.
>
> v1->v2
>
> [...]
Here is the summary with links:
- [net,v2] net: phy: LAN87xx: remove genphy_softreset in config_aneg
https://git.kernel.org/netdev/net/c/b2cd2cde7d69
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2022-04-11 10:00 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-04-07 4:46 [Patch net v2] net: phy: LAN87xx: remove genphy_softreset in config_aneg Arun Ramadoss
2022-04-11 10:00 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).