gpio: cadence: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Thu, 28 Sep 2023 07:06:47 +0000 (09:06 +0200)
committerBartosz Golaszewski <bartosz.golaszewski@linaro.org>
Mon, 2 Oct 2023 06:54:26 +0000 (08:54 +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>
Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
drivers/gpio/gpio-cadence.c

index 3720b90cad102dc7f6b5f54658e464014deb7910..6a439cf78459673fa99e37f8764ec191d1c4de65 100644 (file)
@@ -268,14 +268,12 @@ err_revert_dir:
        return ret;
 }
 
-static int cdns_gpio_remove(struct platform_device *pdev)
+static void cdns_gpio_remove(struct platform_device *pdev)
 {
        struct cdns_gpio_chip *cgpio = platform_get_drvdata(pdev);
 
        iowrite32(cgpio->bypass_orig, cgpio->regs + CDNS_GPIO_BYPASS_MODE);
        clk_disable_unprepare(cgpio->pclk);
-
-       return 0;
 }
 
 static const struct of_device_id cdns_of_ids[] = {
@@ -290,7 +288,7 @@ static struct platform_driver cdns_gpio_driver = {
                .of_match_table = cdns_of_ids,
        },
        .probe = cdns_gpio_probe,
-       .remove = cdns_gpio_remove,
+       .remove_new = cdns_gpio_remove,
 };
 module_platform_driver(cdns_gpio_driver);