Re: [PATCH RESUBMIT net-next] r8169: simplify EEE handling
From: Andrew Lunn <andrew@lunn.ch>
Date: 2024-02-02 00:16:43
From: Andrew Lunn <andrew@lunn.ch>
Date: 2024-02-02 00:16:43
@@ -5058,7 +5033,9 @@ static int r8169_mdio_register(struct rtl8169_private *tp) } tp->phydev->mac_managed_pm = true; - + if (rtl_supports_eee(tp)) + linkmode_copy(tp->phydev->advertising_eee, + tp->phydev->supported_eee);
This looks odd. Does it mean something is missing on phylib? Andrew