spi: tegra20-slink: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Fri, 3 Mar 2023 17:20:34 +0000 (18:20 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 6 Mar 2023 21:18:21 +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-81-u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/spi/spi-tegra20-slink.c

index 148043d0c2b847bc9712af79755d9c80ea142693..ac7933bc03e2536909d21c29f24e562e42c782f0 100644 (file)
@@ -1134,7 +1134,7 @@ exit_free_master:
        return ret;
 }
 
-static int tegra_slink_remove(struct platform_device *pdev)
+static void tegra_slink_remove(struct platform_device *pdev)
 {
        struct spi_master *master = spi_master_get(platform_get_drvdata(pdev));
        struct tegra_slink_data *tspi = spi_master_get_devdata(master);
@@ -1152,7 +1152,6 @@ static int tegra_slink_remove(struct platform_device *pdev)
                tegra_slink_deinit_dma_param(tspi, true);
 
        spi_master_put(master);
-       return 0;
 }
 
 #ifdef CONFIG_PM_SLEEP
@@ -1220,7 +1219,7 @@ static struct platform_driver tegra_slink_driver = {
                .of_match_table = tegra_slink_of_match,
        },
        .probe =        tegra_slink_probe,
-       .remove =       tegra_slink_remove,
+       .remove_new =   tegra_slink_remove,
 };
 module_platform_driver(tegra_slink_driver);