soc/rockchip: io-domain: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 25 Sep 2023 09:55:21 +0000 (11:55 +0200)
committerHeiko Stuebner <heiko@sntech.de>
Sun, 1 Oct 2023 22:56:13 +0000 (00:56 +0200)
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() will be renamed to .remove().

Trivially convert this driver 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>
Link: https://lore.kernel.org/r/20230925095532.1984344-31-u.kleine-koenig@pengutronix.de
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
drivers/soc/rockchip/io-domain.c

index 6619256c2d1180f2a24e5c1a595bafe1d2c65c16..18f809c160a72063033fc71f65fee0db9588e1b3 100644 (file)
@@ -687,7 +687,7 @@ unreg_notify:
        return ret;
 }
 
-static int rockchip_iodomain_remove(struct platform_device *pdev)
+static void rockchip_iodomain_remove(struct platform_device *pdev)
 {
        struct rockchip_iodomain *iod = platform_get_drvdata(pdev);
        int i;
@@ -699,13 +699,11 @@ static int rockchip_iodomain_remove(struct platform_device *pdev)
                        regulator_unregister_notifier(io_supply->reg,
                                                      &io_supply->nb);
        }
-
-       return 0;
 }
 
 static struct platform_driver rockchip_iodomain_driver = {
        .probe   = rockchip_iodomain_probe,
-       .remove  = rockchip_iodomain_remove,
+       .remove_new = rockchip_iodomain_remove,
        .driver  = {
                .name  = "rockchip-iodomain",
                .of_match_table = rockchip_iodomain_match,