mirror of
https://github.com/torvalds/linux.git
synced 2026-05-23 14:42:08 +02:00
power: supply: da9052: Use devm_power_supply_register() helper
Use the device lifecycle managed register function. This helps prevent mistakes like unregistering out of order in cleanup functions and forgetting to unregister on error paths. Signed-off-by: Andrew Davis <afd@ti.com> Link: https://lore.kernel.org/r/20240123163653.384385-3-afd@ti.com Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
98be59bd03
commit
57261cda15
|
|
@ -622,7 +622,7 @@ static s32 da9052_bat_probe(struct platform_device *pdev)
|
|||
}
|
||||
}
|
||||
|
||||
bat->psy = power_supply_register(&pdev->dev, &psy_desc, &psy_cfg);
|
||||
bat->psy = devm_power_supply_register(&pdev->dev, &psy_desc, &psy_cfg);
|
||||
if (IS_ERR(bat->psy)) {
|
||||
ret = PTR_ERR(bat->psy);
|
||||
goto err;
|
||||
|
|
@ -644,8 +644,6 @@ static void da9052_bat_remove(struct platform_device *pdev)
|
|||
|
||||
for (i = 0; i < ARRAY_SIZE(da9052_bat_irqs); i++)
|
||||
da9052_free_irq(bat->da9052, da9052_bat_irq_bits[i], bat);
|
||||
|
||||
power_supply_unregister(bat->psy);
|
||||
}
|
||||
|
||||
static struct platform_driver da9052_bat_driver = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user