]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: dsa: ksz: remove setting of tx_lpi parameters
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Mon, 6 Jan 2025 11:58:43 +0000 (11:58 +0000)
committerJakub Kicinski <kuba@kernel.org>
Wed, 8 Jan 2025 02:06:16 +0000 (18:06 -0800)
dsa_user_get_eee() calls the DSA switch get_mac_eee() method followed
by phylink_ethtool_get_eee(), which goes on to call
phy_ethtool_get_eee(). This overwrites all members of the passed
ethtool_keee, which means anything written by the DSA switch
get_mac_eee() method will be discarded.

Remove setting any members in ksz_get_mac_eee().

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/E1tUlkp-007UyW-OR@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/dsa/microchip/ksz_common.c

index e3512e324572e1cb3e8980946fb9707789690826..60a4630dd7ba2357b0c2b19389b35e9a5ce0cba4 100644 (file)
@@ -3492,14 +3492,6 @@ static bool ksz_support_eee(struct dsa_switch *ds, int port)
 static int ksz_get_mac_eee(struct dsa_switch *ds, int port,
                           struct ethtool_keee *e)
 {
-       /* There is no documented control of Tx LPI configuration. */
-       e->tx_lpi_enabled = true;
-
-       /* There is no documented control of Tx LPI timer. According to tests
-        * Tx LPI timer seems to be set by default to minimal value.
-        */
-       e->tx_lpi_timer = 0;
-
        return 0;
 }