power: supply: ds2782: Use devm_delayed_work_autocancel() helper
authorAndrew Davis <afd@ti.com>
Mon, 2 Dec 2024 21:15:19 +0000 (15:15 -0600)
committerSebastian Reichel <sebastian.reichel@collabora.com>
Wed, 4 Dec 2024 21:31:32 +0000 (22:31 +0100)
Use the device lifecycle managed work init function. This helps prevent
mistakes like canceling out of order in cleanup functions and
forgetting to canceling on error paths.

Note we move this to after the registering the power supply so that
the cancel is called before unregistering.

This was the last thing the .remove() function did, so remove that too.

Signed-off-by: Andrew Davis <afd@ti.com>
Link: https://lore.kernel.org/r/20241202211519.199635-5-afd@ti.com
Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
drivers/power/supply/ds2782_battery.c

index ea687b970331497ce864e97192e677fd485284d0..cae95d35d39802c715e7bd14e5264ace67a1c2d0 100644 (file)
@@ -11,6 +11,7 @@
  * UEvent sending added by Evgeny Romanov <romanov@neurosoft.ru>
  */
 
+#include <linux/devm-helpers.h>
 #include <linux/kernel.h>
 #include <linux/module.h>
 #include <linux/types.h>
@@ -310,13 +311,6 @@ static void ds278x_power_supply_init(struct power_supply_desc *battery)
        battery->external_power_changed = NULL;
 }
 
-static void ds278x_battery_remove(struct i2c_client *client)
-{
-       struct ds278x_info *info = i2c_get_clientdata(client);
-
-       cancel_delayed_work_sync(&info->bat_work);
-}
-
 #ifdef CONFIG_PM_SLEEP
 
 static int ds278x_suspend(struct device *dev)
@@ -412,18 +406,19 @@ static int ds278x_battery_probe(struct i2c_client *client)
        info->capacity = 100;
        info->status = POWER_SUPPLY_STATUS_FULL;
 
-       INIT_DELAYED_WORK(&info->bat_work, ds278x_bat_work);
-
        info->battery = devm_power_supply_register(&client->dev,
                                                   &info->battery_desc,
                                                   &psy_cfg);
        if (IS_ERR(info->battery)) {
                dev_err(&client->dev, "failed to register battery\n");
                return PTR_ERR(info->battery);
-       } else {
-               schedule_delayed_work(&info->bat_work, DS278x_DELAY);
        }
 
+       ret = devm_delayed_work_autocancel(&client->dev, &info->bat_work, ds278x_bat_work);
+       if (ret)
+               return ret;
+       schedule_delayed_work(&info->bat_work, DS278x_DELAY);
+
        return 0;
 }
 
@@ -440,7 +435,6 @@ static struct i2c_driver ds278x_battery_driver = {
                .pm     = &ds278x_battery_pm_ops,
        },
        .probe          = ds278x_battery_probe,
-       .remove         = ds278x_battery_remove,
        .id_table       = ds278x_id,
 };
 module_i2c_driver(ds278x_battery_driver);