fbdev: xilinxfb: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sat, 18 Mar 2023 23:54:28 +0000 (00:54 +0100)
committerHelge Deller <deller@gmx.de>
Mon, 24 Apr 2023 09:48:33 +0000 (11:48 +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 (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>
Signed-off-by: Helge Deller <deller@gmx.de>
drivers/video/fbdev/xilinxfb.c

index 7911354827dc25042720884f408c11a98ae373bd..2aa3a528277f6019f027ba2fe38fa0ccb7219eb2 100644 (file)
@@ -474,11 +474,9 @@ static int xilinxfb_of_probe(struct platform_device *pdev)
        return xilinxfb_assign(pdev, drvdata, &pdata);
 }
 
-static int xilinxfb_of_remove(struct platform_device *op)
+static void xilinxfb_of_remove(struct platform_device *op)
 {
        xilinxfb_release(&op->dev);
-
-       return 0;
 }
 
 /* Match table for of_platform binding */
@@ -494,7 +492,7 @@ MODULE_DEVICE_TABLE(of, xilinxfb_of_match);
 
 static struct platform_driver xilinxfb_of_driver = {
        .probe = xilinxfb_of_probe,
-       .remove = xilinxfb_of_remove,
+       .remove_new = xilinxfb_of_remove,
        .driver = {
                .name = DRIVER_NAME,
                .of_match_table = xilinxfb_of_match,