]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
net: airoha: Do not return err in ndo_stop() callback
authorLorenzo Bianconi <lorenzo@kernel.org>
Tue, 28 Apr 2026 06:53:16 +0000 (08:53 +0200)
committerJakub Kicinski <kuba@kernel.org>
Thu, 30 Apr 2026 01:29:54 +0000 (18:29 -0700)
Always complete the airoha_dev_stop() routine regardless of the
airoha_set_vip_for_gdm_port() return value, since errors from
ndo_stop() are ignored by the networking stack and the interface is
always considered down after the call.

Fixes: 23020f049327 ("net: airoha: Introduce ethernet support for EN7581 SoC")
Signed-off-by: Lorenzo Bianconi <lorenzo@kernel.org>
Link: https://patch.msgid.link/20260428-airoha-ndo-stop-not-err-v1-1-674506d29a91@kernel.org
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
drivers/net/ethernet/airoha/airoha_eth.c

index 5effb4a4ae8415806acf78c33eaaf89a6596ca28..f8b3d53bccadbd73971f8c42fde5a04d77ca336a 100644 (file)
@@ -1747,13 +1747,10 @@ static int airoha_dev_stop(struct net_device *dev)
 {
        struct airoha_gdm_port *port = netdev_priv(dev);
        struct airoha_qdma *qdma = port->qdma;
-       int i, err;
+       int i;
 
        netif_tx_disable(dev);
-       err = airoha_set_vip_for_gdm_port(port, false);
-       if (err)
-               return err;
-
+       airoha_set_vip_for_gdm_port(port, false);
        for (i = 0; i < dev->num_tx_queues; i++)
                netdev_tx_reset_subqueue(dev, i);