HID: google: hammer: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Wed, 6 Mar 2024 17:50:48 +0000 (18:50 +0100)
committerJiri Kosina <jkosina@suse.com>
Wed, 3 Apr 2024 11:23:23 +0000 (13:23 +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 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 <u.kleine-koenig@pengutronix.de>
Signed-off-by: Jiri Kosina <jkosina@suse.com>
drivers/hid/hid-google-hammer.c

index c6bdb9c4ef3e004cf27fba53b6f5e0eccbe21b55..25331695ae32dd1942526427eb851365abdb114b 100644 (file)
@@ -255,7 +255,7 @@ out:
        return retval;
 }
 
-static int cbas_ec_remove(struct platform_device *pdev)
+static void cbas_ec_remove(struct platform_device *pdev)
 {
        struct cros_ec_device *ec = dev_get_drvdata(pdev->dev.parent);
 
@@ -266,7 +266,6 @@ static int cbas_ec_remove(struct platform_device *pdev)
        cbas_ec_set_input(NULL);
 
        mutex_unlock(&cbas_ec_reglock);
-       return 0;
 }
 
 static const struct acpi_device_id cbas_ec_acpi_ids[] = {
@@ -285,7 +284,7 @@ MODULE_DEVICE_TABLE(of, cbas_ec_of_match);
 
 static struct platform_driver cbas_ec_driver = {
        .probe = cbas_ec_probe,
-       .remove = cbas_ec_remove,
+       .remove_new = cbas_ec_remove,
        .driver = {
                .name = "cbas_ec",
                .acpi_match_table = ACPI_PTR(cbas_ec_acpi_ids),