]> Git Repo - linux.git/commitdiff
fbdev: atmel_lcdfb: Convert to platform remove callback returning void
authorUwe Kleine-König <[email protected]>
Tue, 7 Nov 2023 09:17:54 +0000 (10:17 +0100)
committerHelge Deller <[email protected]>
Fri, 10 Nov 2023 06:34:19 +0000 (07:34 +0100)
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 <[email protected]>
Signed-off-by: Helge Deller <[email protected]>
drivers/video/fbdev/atmel_lcdfb.c

index 00b643483a4e8239d2388ffd22517a6fae3d514f..9e391e5eaf9dae4d1acbbb6e64e9da749f699cd1 100644 (file)
@@ -1223,14 +1223,14 @@ out:
        return ret;
 }
 
-static int atmel_lcdfb_remove(struct platform_device *pdev)
+static void atmel_lcdfb_remove(struct platform_device *pdev)
 {
        struct device *dev = &pdev->dev;
        struct fb_info *info = dev_get_drvdata(dev);
        struct atmel_lcdfb_info *sinfo;
 
        if (!info || !info->par)
-               return 0;
+               return;
        sinfo = info->par;
 
        cancel_work_sync(&sinfo->task);
@@ -1252,8 +1252,6 @@ static int atmel_lcdfb_remove(struct platform_device *pdev)
        }
 
        framebuffer_release(info);
-
-       return 0;
 }
 
 #ifdef CONFIG_PM
@@ -1302,7 +1300,7 @@ static int atmel_lcdfb_resume(struct platform_device *pdev)
 
 static struct platform_driver atmel_lcdfb_driver = {
        .probe          = atmel_lcdfb_probe,
-       .remove         = atmel_lcdfb_remove,
+       .remove_new     = atmel_lcdfb_remove,
        .suspend        = atmel_lcdfb_suspend,
        .resume         = atmel_lcdfb_resume,
        .driver         = {
This page took 0.058725 seconds and 4 git commands to generate.