mirror of
https://github.com/torvalds/linux.git
synced 2024-11-10 14:11:52 +00:00
coresight: trbe: 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. Reviewed-by: James Clark <james.clark@arm.com> Signed-off-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Signed-off-by: Suzuki K Poulose <suzuki.poulose@arm.com> Link: https://lore.kernel.org/r/20231116173301.708873-13-u.kleine-koenig@pengutronix.de
This commit is contained in:
parent
3d1e99f734
commit
98881b34ce
@ -1530,14 +1530,13 @@ probe_failed:
|
||||
return ret;
|
||||
}
|
||||
|
||||
static int arm_trbe_device_remove(struct platform_device *pdev)
|
||||
static void arm_trbe_device_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct trbe_drvdata *drvdata = platform_get_drvdata(pdev);
|
||||
|
||||
arm_trbe_remove_cpuhp(drvdata);
|
||||
arm_trbe_remove_coresight(drvdata);
|
||||
arm_trbe_remove_irq(drvdata);
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id arm_trbe_of_match[] = {
|
||||
@ -1562,7 +1561,7 @@ static struct platform_driver arm_trbe_driver = {
|
||||
.suppress_bind_attrs = true,
|
||||
},
|
||||
.probe = arm_trbe_device_probe,
|
||||
.remove = arm_trbe_device_remove,
|
||||
.remove_new = arm_trbe_device_remove,
|
||||
};
|
||||
|
||||
static int __init arm_trbe_init(void)
|
||||
|
Loading…
Reference in New Issue
Block a user