mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-26 07:44:27 +08:00
power: supply: pcf50633-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-22-u.kleine-koenig@pengutronix.de Signed-off-by: Sebastian Reichel <sebastian.reichel@collabora.com>
This commit is contained in:
parent
026f25f221
commit
6e3ed20e85
@ -441,7 +441,7 @@ static int pcf50633_mbc_probe(struct platform_device *pdev)
|
||||
return 0;
|
||||
}
|
||||
|
||||
static int pcf50633_mbc_remove(struct platform_device *pdev)
|
||||
static void pcf50633_mbc_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct pcf50633_mbc *mbc = platform_get_drvdata(pdev);
|
||||
int i;
|
||||
@ -453,8 +453,6 @@ static int pcf50633_mbc_remove(struct platform_device *pdev)
|
||||
power_supply_unregister(mbc->usb);
|
||||
power_supply_unregister(mbc->adapter);
|
||||
power_supply_unregister(mbc->ac);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_driver pcf50633_mbc_driver = {
|
||||
@ -462,7 +460,7 @@ static struct platform_driver pcf50633_mbc_driver = {
|
||||
.name = "pcf50633-mbc",
|
||||
},
|
||||
.probe = pcf50633_mbc_probe,
|
||||
.remove = pcf50633_mbc_remove,
|
||||
.remove_new = pcf50633_mbc_remove,
|
||||
};
|
||||
|
||||
module_platform_driver(pcf50633_mbc_driver);
|
||||
|
Loading…
Reference in New Issue
Block a user