]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
net: ethernet: renesas: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 18 Sep 2023 20:42:13 +0000 (22:42 +0200)
committerDavid S. Miller <davem@davemloft.net>
Wed, 20 Sep 2023 08:06:40 +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>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Sergey Shtylyov <s.shtylyov@omp.ru>
Reviewed-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ethernet/renesas/ravb_main.c
drivers/net/ethernet/renesas/rswitch.c
drivers/net/ethernet/renesas/sh_eth.c

index 7df9f9f8e134025f62c4bf658a059075e359219c..e62391180032bcd79561fbd7b2ccca8d3a8a5120 100644 (file)
@@ -2878,7 +2878,7 @@ out_release:
        return error;
 }
 
-static int ravb_remove(struct platform_device *pdev)
+static void ravb_remove(struct platform_device *pdev)
 {
        struct net_device *ndev = platform_get_drvdata(pdev);
        struct ravb_private *priv = netdev_priv(ndev);
@@ -2905,8 +2905,6 @@ static int ravb_remove(struct platform_device *pdev)
        reset_control_assert(priv->rstc);
        free_netdev(ndev);
        platform_set_drvdata(pdev, NULL);
-
-       return 0;
 }
 
 static int ravb_wol_setup(struct net_device *ndev)
@@ -3044,7 +3042,7 @@ static const struct dev_pm_ops ravb_dev_pm_ops = {
 
 static struct platform_driver ravb_driver = {
        .probe          = ravb_probe,
-       .remove         = ravb_remove,
+       .remove_new     = ravb_remove,
        .driver = {
                .name   = "ravb",
                .pm     = &ravb_dev_pm_ops,
index ea9186178091d5165ffcf14f5231a84d990a8e61..3c165b15709f221cd6f5a9f8a632b297f5cf6f0d 100644 (file)
@@ -1968,7 +1968,7 @@ static void rswitch_deinit(struct rswitch_private *priv)
        rswitch_clock_disable(priv);
 }
 
-static int renesas_eth_sw_remove(struct platform_device *pdev)
+static void renesas_eth_sw_remove(struct platform_device *pdev)
 {
        struct rswitch_private *priv = platform_get_drvdata(pdev);
 
@@ -1978,13 +1978,11 @@ static int renesas_eth_sw_remove(struct platform_device *pdev)
        pm_runtime_disable(&pdev->dev);
 
        platform_set_drvdata(pdev, NULL);
-
-       return 0;
 }
 
 static struct platform_driver renesas_eth_sw_driver_platform = {
        .probe = renesas_eth_sw_probe,
-       .remove = renesas_eth_sw_remove,
+       .remove_new = renesas_eth_sw_remove,
        .driver = {
                .name = "renesas_eth_sw",
                .of_match_table = renesas_eth_sw_of_table,
index 274ea16c0a1f71786ec408269eb24c5706aded29..475e1e8c1d35f37845616e8653c01a62b3984491 100644 (file)
@@ -3431,7 +3431,7 @@ out_release:
        return ret;
 }
 
-static int sh_eth_drv_remove(struct platform_device *pdev)
+static void sh_eth_drv_remove(struct platform_device *pdev)
 {
        struct net_device *ndev = platform_get_drvdata(pdev);
        struct sh_eth_private *mdp = netdev_priv(ndev);
@@ -3441,8 +3441,6 @@ static int sh_eth_drv_remove(struct platform_device *pdev)
        sh_mdio_release(mdp);
        pm_runtime_disable(&pdev->dev);
        free_netdev(ndev);
-
-       return 0;
 }
 
 #ifdef CONFIG_PM
@@ -3562,7 +3560,7 @@ MODULE_DEVICE_TABLE(platform, sh_eth_id_table);
 
 static struct platform_driver sh_eth_driver = {
        .probe = sh_eth_drv_probe,
-       .remove = sh_eth_drv_remove,
+       .remove_new = sh_eth_drv_remove,
        .id_table = sh_eth_id_table,
        .driver = {
                   .name = CARDNAME,