mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 06:01:57 +00:00
mcb: lpc: 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() will be 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> Signed-off-by: Johannes Thumshirn <jth@kernel.org> Link: https://lore.kernel.org/r/cd04e21a7e2646bfe44b2304eea2b3fd0ee84018.1714379722.git.jth@kernel.org Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
0b6896838d
commit
a2c72ed78a
@ -97,13 +97,11 @@ out_mcb_bus:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int mcb_lpc_remove(struct platform_device *pdev)
|
||||
static void mcb_lpc_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct priv *priv = platform_get_drvdata(pdev);
|
||||
|
||||
mcb_release_bus(priv->bus);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static struct platform_device *mcb_lpc_pdev;
|
||||
@ -140,7 +138,7 @@ static struct platform_driver mcb_lpc_driver = {
|
||||
.name = "mcb-lpc",
|
||||
},
|
||||
.probe = mcb_lpc_probe,
|
||||
.remove = mcb_lpc_remove,
|
||||
.remove_new = mcb_lpc_remove,
|
||||
};
|
||||
|
||||
static const struct dmi_system_id mcb_lpc_dmi_table[] = {
|
||||
|
Loading…
Reference in New Issue
Block a user