media: cros-ec-cec: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Sun, 26 Mar 2023 14:30:30 +0000 (16:30 +0200)
committerHans Verkuil <hverkuil-cisco@xs4all.nl>
Tue, 11 Apr 2023 14:59:13 +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>
Reviewed-by: Guenter Roeck <groeck@chromium.org>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
drivers/media/cec/platform/cros-ec/cros-ec-cec.c

index 3525ed8f4fc1aca890f6886b6e43c3391e9a1df6..c17faf002877d463ba7b24fbb6cbb84f964395c0 100644 (file)
@@ -332,7 +332,7 @@ out_probe_adapter:
        return ret;
 }
 
-static int cros_ec_cec_remove(struct platform_device *pdev)
+static void cros_ec_cec_remove(struct platform_device *pdev)
 {
        struct cros_ec_cec *cros_ec_cec = platform_get_drvdata(pdev);
        struct device *dev = &pdev->dev;
@@ -352,13 +352,11 @@ static int cros_ec_cec_remove(struct platform_device *pdev)
        cec_notifier_cec_adap_unregister(cros_ec_cec->notify,
                                         cros_ec_cec->adap);
        cec_unregister_adapter(cros_ec_cec->adap);
-
-       return 0;
 }
 
 static struct platform_driver cros_ec_cec_driver = {
        .probe = cros_ec_cec_probe,
-       .remove  = cros_ec_cec_remove,
+       .remove_new = cros_ec_cec_remove,
        .driver = {
                .name = DRV_NAME,
                .pm = &cros_ec_cec_pm_ops,