net: ethernet: sun: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 18 Sep 2023 20:42:19 +0000 (22:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 20 Sep 2023 08:06:41 +0000 (09:06 +0100)
The .remove() callback for a platform driver returns an int which makes
many driver authors wrongly assume it's possible to do error handling by
returning an error code. However the value returned is ignored (apart
from emitting a warning) and this typically results in resource leaks.
To improve here there is a quest to make the remove callback return
void. In the first step of this quest all drivers are converted to
.remove_new() which already returns void. Eventually after all drivers
are converted, .remove_new() is renamed to .remove().

Trivially convert these drivers from always returning zero in the remove
callback to the void returning variant.

Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/sun/niu.c
drivers/net/ethernet/sun/sunbmac.c
drivers/net/ethernet/sun/sunqe.c

index 011d74087f860dfa40d21d456fe770ea462a0af1..21431f43e4c223adcdee266eb6b4c09ce85e1316 100644 (file)
@@ -10132,7 +10132,7 @@ err_out:
        return err;
 }
 
-static int niu_of_remove(struct platform_device *op)
+static void niu_of_remove(struct platform_device *op)
 {
        struct net_device *dev = platform_get_drvdata(op);
 
@@ -10165,7 +10165,6 @@ static int niu_of_remove(struct platform_device *op)
 
                free_netdev(dev);
        }
-       return 0;
 }
 
 static const struct of_device_id niu_match[] = {
@@ -10183,7 +10182,7 @@ static struct platform_driver niu_of_driver = {
                .of_match_table = niu_match,
        },
        .probe          = niu_of_probe,
-       .remove         = niu_of_remove,
+       .remove_new     = niu_of_remove,
 };
 
 #endif /* CONFIG_SPARC64 */
index cc34d92d2e3dacb2379041153304296d261da495..16c86b13c185c7bf13ff6d72e91119471a183880 100644 (file)
@@ -1234,7 +1234,7 @@ static int bigmac_sbus_probe(struct platform_device *op)
        return bigmac_ether_init(op, qec_op);
 }
 
-static int bigmac_sbus_remove(struct platform_device *op)
+static void bigmac_sbus_remove(struct platform_device *op)
 {
        struct bigmac *bp = platform_get_drvdata(op);
        struct device *parent = op->dev.parent;
@@ -1255,8 +1255,6 @@ static int bigmac_sbus_remove(struct platform_device *op)
                          bp->bblock_dvma);
 
        free_netdev(net_dev);
-
-       return 0;
 }
 
 static const struct of_device_id bigmac_sbus_match[] = {
@@ -1274,7 +1272,7 @@ static struct platform_driver bigmac_sbus_driver = {
                .of_match_table = bigmac_sbus_match,
        },
        .probe          = bigmac_sbus_probe,
-       .remove         = bigmac_sbus_remove,
+       .remove_new     = bigmac_sbus_remove,
 };
 
 module_platform_driver(bigmac_sbus_driver);
index b37360f449726477fc8e1090950298d54ce1fe89..aedd13c942250529e8b6606da0f56ab3a5ea37aa 100644 (file)
@@ -933,7 +933,7 @@ static int qec_sbus_probe(struct platform_device *op)
        return qec_ether_init(op);
 }
 
-static int qec_sbus_remove(struct platform_device *op)
+static void qec_sbus_remove(struct platform_device *op)
 {
        struct sunqe *qp = platform_get_drvdata(op);
        struct net_device *net_dev = qp->dev;
@@ -948,8 +948,6 @@ static int qec_sbus_remove(struct platform_device *op)
                          qp->buffers, qp->buffers_dvma);
 
        free_netdev(net_dev);
-
-       return 0;
 }
 
 static const struct of_device_id qec_sbus_match[] = {
@@ -967,7 +965,7 @@ static struct platform_driver qec_sbus_driver = {
                .of_match_table = qec_sbus_match,
        },
        .probe          = qec_sbus_probe,
-       .remove         = qec_sbus_remove,
+       .remove_new     = qec_sbus_remove,
 };
 
 static int __init qec_init(void)