Message ID | 20250110093358.2718748-1-zhangxiangqian@kylinos.cn (mailing list archive) |
---|---|
State | New |
Delegated to: | Netdev Maintainers |
Headers | show |
Series | net: phy: motorcomm: Fix yt8521 Speed issue | expand |
diff --git a/drivers/net/phy/motorcomm.c b/drivers/net/phy/motorcomm.c index 0e91f5d1a4fd..e1e33b1236e2 100644 --- a/drivers/net/phy/motorcomm.c +++ b/drivers/net/phy/motorcomm.c @@ -1487,6 +1487,7 @@ static int yt8521_read_status(struct phy_device *phydev) } phydev->link = 0; + phydev->speed = SPEED_UNKNOWN; } return 0;
yt8521 is 1000Mb/s after connecting to the network cable, but it is still 1000Mb/s after unplugging the network cable. Signed-off-by: Xiangqian Zhang <zhangxiangqian@kylinos.cn> --- drivers/net/phy/motorcomm.c | 1 + 1 file changed, 1 insertion(+)