mirror of
https://github.com/torvalds/linux.git
synced 2024-11-22 20:22:09 +00:00
mmc: wbsd: 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 (mostly) ignored 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. Trivially convert this driver from always returning zero in the remove callback to the void returning variant. Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Yangtao Li <frank.li@vivo.com> Link: https://lore.kernel.org/r/20230727070051.17778-43-frank.li@vivo.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
This commit is contained in:
parent
65c86da4b1
commit
f9b85b7865
@ -1754,11 +1754,9 @@ static int wbsd_probe(struct platform_device *dev)
|
||||
return wbsd_init(&dev->dev, param_io, param_irq, param_dma, 0);
|
||||
}
|
||||
|
||||
static int wbsd_remove(struct platform_device *dev)
|
||||
static void wbsd_remove(struct platform_device *dev)
|
||||
{
|
||||
wbsd_shutdown(&dev->dev, 0);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
/*
|
||||
@ -1900,8 +1898,7 @@ static struct platform_device *wbsd_device;
|
||||
|
||||
static struct platform_driver wbsd_driver = {
|
||||
.probe = wbsd_probe,
|
||||
.remove = wbsd_remove,
|
||||
|
||||
.remove_new = wbsd_remove,
|
||||
.suspend = wbsd_platform_suspend,
|
||||
.resume = wbsd_platform_resume,
|
||||
.driver = {
|
||||
|
Loading…
Reference in New Issue
Block a user