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

index 1411548f4255366a749297e8c57f04a576ea5982..d2f9eea5e09375e75308d80b42738646a63dfd4e 100644 (file)
@@ -504,7 +504,7 @@ static int xilinx_spi_probe(struct platform_device *pdev)
        return 0;
 }
 
-static int xilinx_spi_remove(struct platform_device *pdev)
+static void xilinx_spi_remove(struct platform_device *pdev)
 {
        struct spi_master *master = platform_get_drvdata(pdev);
        struct xilinx_spi *xspi = spi_master_get_devdata(master);
@@ -518,8 +518,6 @@ static int xilinx_spi_remove(struct platform_device *pdev)
        xspi->write_fn(0, regs_base + XIPIF_V123B_DGIER_OFFSET);
 
        spi_master_put(xspi->bitbang.master);
-
-       return 0;
 }
 
 /* work with hotplug and coldplug */
@@ -527,7 +525,7 @@ MODULE_ALIAS("platform:" XILINX_SPI_NAME);
 
 static struct platform_driver xilinx_spi_driver = {
        .probe = xilinx_spi_probe,
-       .remove = xilinx_spi_remove,
+       .remove_new = xilinx_spi_remove,
        .driver = {
                .name = XILINX_SPI_NAME,
                .of_match_table = xilinx_spi_of_match,