]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
net: stmmac: move "TSO supported" message to stmmac_set_gso_features()
authorRussell King (Oracle) <rmk+kernel@armlinux.org.uk>
Wed, 1 Apr 2026 07:22:20 +0000 (08:22 +0100)
committerJakub Kicinski <kuba@kernel.org>
Thu, 2 Apr 2026 18:28:20 +0000 (11:28 -0700)
Move the "TSO supported" message to stmmac_set_gso_features() so that
we group all probe-time TSO stuff in one place.

Signed-off-by: Russell King (Oracle) <rmk+kernel@armlinux.org.uk>
Link: https://patch.msgid.link/E1w7pu8-0000000Eau5-3Zne@rmk-PC.armlinux.org.uk
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/stmicro/stmmac/stmmac_main.c

index 350efbd9d85b753ad3177c14743173c228d73632..01a983001ab45e2aece539a3551700bdd946e8c5 100644 (file)
@@ -4391,6 +4391,9 @@ static void stmmac_set_gso_features(struct net_device *ndev)
        const struct stmmac_dma_cfg *dma_cfg;
        int txpbl;
 
+       if (priv->dma_cap.tsoen)
+               dev_info(priv->device, "TSO supported\n");
+
        if (!(priv->plat->flags & STMMAC_FLAG_TSO_EN))
                return;
 
@@ -7463,9 +7466,6 @@ static int stmmac_hw_init(struct stmmac_priv *priv)
                devm_pm_set_wake_irq(priv->device, priv->wol_irq);
        }
 
-       if (priv->dma_cap.tsoen)
-               dev_info(priv->device, "TSO supported\n");
-
        if (priv->dma_cap.number_rx_queues &&
            priv->plat->rx_queues_to_use > priv->dma_cap.number_rx_queues) {
                dev_warn(priv->device,