mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-15 00:04:15 +08:00
power: supply: tps65090-charger: Convert to platform remove callback returning void
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() is 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/20230918133700.1254499-26-u.kleine-koenig@pengutronix.de Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
0569d4cfa8
commit
75d8365c94
@ -328,15 +328,13 @@ fail_unregister_supply:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int tps65090_charger_remove(struct platform_device *pdev)
|
||||
static void tps65090_charger_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct tps65090_charger *cdata = platform_get_drvdata(pdev);
|
||||
|
||||
if (cdata->irq == -ENXIO)
|
||||
kthread_stop(cdata->poll_task);
|
||||
power_supply_unregister(cdata->ac);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id of_tps65090_charger_match[] = {
|
||||
@ -351,7 +349,7 @@ static struct platform_driver tps65090_charger_driver = {
|
||||
.of_match_table = of_tps65090_charger_match,
|
||||
},
|
||||
.probe = tps65090_charger_probe,
|
||||
.remove = tps65090_charger_remove,
|
||||
.remove_new = tps65090_charger_remove,
|
||||
};
|
||||
module_platform_driver(tps65090_charger_driver);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user