spi: sprd-adi: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 3 Mar 2023 17:20:24 +0000 (18:20 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 6 Mar 2023 21:18:12 +0000 (21:18 +0000)
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 (mostly) ignored
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.

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/20230303172041.2103336-71-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-sprd-adi.c

index 1edbf44c05a72e713d03b6ed08f940ff43704abf..3b158124d79f7a4abea94bfc37c8f173ead626bd 100644 (file)
@@ -608,13 +608,12 @@ put_ctlr:
        return ret;
 }
 
-static int sprd_adi_remove(struct platform_device *pdev)
+static void sprd_adi_remove(struct platform_device *pdev)
 {
        struct spi_controller *ctlr = dev_get_drvdata(&pdev->dev);
        struct sprd_adi *sadi = spi_controller_get_devdata(ctlr);
 
        unregister_restart_handler(&sadi->restart_handler);
-       return 0;
 }
 
 static struct sprd_adi_data sc9860_data = {
@@ -660,7 +659,7 @@ static struct platform_driver sprd_adi_driver = {
                .of_match_table = sprd_adi_of_match,
        },
        .probe = sprd_adi_probe,
-       .remove = sprd_adi_remove,
+       .remove_new = sprd_adi_remove,
 };
 module_platform_driver(sprd_adi_driver);