]> www.infradead.org Git - users/hch/configfs.git/commitdiff
platform/x86: asus-wmi: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Mon, 4 Dec 2023 21:52:11 +0000 (22:52 +0100)
committerHans de Goede <hdegoede@redhat.com>
Mon, 11 Dec 2023 10:03:26 +0000 (11:03 +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 <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/639b9ffc18422fe59125893bd7909e8a73cffb72.1701726190.git.u.kleine-koenig@pengutronix.de
Reviewed-by: Hans de Goede <hdegoede@redhat.com>
Signed-off-by: Hans de Goede <hdegoede@redhat.com>
drivers/platform/x86/asus-wmi.c

index 6a79f16233abf737d6242bd938af791f007793ac..ca3e64c37f1e4f50ac4b194cd1f54b223d885c55 100644 (file)
@@ -4598,7 +4598,7 @@ fail_platform:
        return err;
 }
 
-static int asus_wmi_remove(struct platform_device *device)
+static void asus_wmi_remove(struct platform_device *device)
 {
        struct asus_wmi *asus;
 
@@ -4619,7 +4619,6 @@ static int asus_wmi_remove(struct platform_device *device)
                platform_profile_remove();
 
        kfree(asus);
-       return 0;
 }
 
 /* Platform driver - hibernate/resume callbacks *******************************/
@@ -4741,7 +4740,7 @@ int __init_or_module asus_wmi_register_driver(struct asus_wmi_driver *driver)
                return -EBUSY;
 
        platform_driver = &driver->platform_driver;
-       platform_driver->remove = asus_wmi_remove;
+       platform_driver->remove_new = asus_wmi_remove;
        platform_driver->driver.owner = driver->owner;
        platform_driver->driver.name = driver->name;
        platform_driver->driver.pm = &asus_pm_ops;