media: gpio-ir-recv: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 26 Mar 2023 14:32:10 +0000 (16:32 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Tue, 11 Apr 2023 14:59:20 +0000 (16:59 +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: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/rc/gpio-ir-recv.c

index 8dbe780dae4e78f852322512bcb0b42c143a1439..fb037788ec1088abd0b4b0e8920afafb4ff015da 100644 (file)
@@ -126,7 +126,7 @@ static int gpio_ir_recv_probe(struct platform_device *pdev)
                                "gpio-ir-recv-irq", gpio_dev);
 }
 
-static int gpio_ir_recv_remove(struct platform_device *pdev)
+static void gpio_ir_recv_remove(struct platform_device *pdev)
 {
        struct gpio_rc_dev *gpio_dev = platform_get_drvdata(pdev);
        struct device *pmdev = gpio_dev->pmdev;
@@ -139,8 +139,6 @@ static int gpio_ir_recv_remove(struct platform_device *pdev)
                pm_runtime_put_noidle(pmdev);
                pm_runtime_set_suspended(pmdev);
        }
-
-       return 0;
 }
 
 #ifdef CONFIG_PM
@@ -202,7 +200,7 @@ MODULE_DEVICE_TABLE(of, gpio_ir_recv_of_match);
 
 static struct platform_driver gpio_ir_recv_driver = {
        .probe  = gpio_ir_recv_probe,
-       .remove = gpio_ir_recv_remove,
+       .remove_new = gpio_ir_recv_remove,
        .driver = {
                .name   = KBUILD_MODNAME,
                .of_match_table = of_match_ptr(gpio_ir_recv_of_match),