mirror of
https://github.com/torvalds/linux.git
synced 2026-06-05 04:56:13 +02:00
iio: adc: bcm_iproc: 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> Reviewed-by: Florian Fainelli <florian.fainelli@broadcom.com> Link: https://lore.kernel.org/r/20230919174931.1417681-7-u.kleine-koenig@pengutronix.de Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
This commit is contained in:
parent
5ff1f75400
commit
bf7c022b58
|
|
@ -594,7 +594,7 @@ static int iproc_adc_probe(struct platform_device *pdev)
|
|||
return ret;
|
||||
}
|
||||
|
||||
static int iproc_adc_remove(struct platform_device *pdev)
|
||||
static void iproc_adc_remove(struct platform_device *pdev)
|
||||
{
|
||||
struct iio_dev *indio_dev = platform_get_drvdata(pdev);
|
||||
struct iproc_adc_priv *adc_priv = iio_priv(indio_dev);
|
||||
|
|
@ -602,8 +602,6 @@ static int iproc_adc_remove(struct platform_device *pdev)
|
|||
iio_device_unregister(indio_dev);
|
||||
iproc_adc_disable(indio_dev);
|
||||
clk_disable_unprepare(adc_priv->adc_clk);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
static const struct of_device_id iproc_adc_of_match[] = {
|
||||
|
|
@ -614,7 +612,7 @@ MODULE_DEVICE_TABLE(of, iproc_adc_of_match);
|
|||
|
||||
static struct platform_driver iproc_adc_driver = {
|
||||
.probe = iproc_adc_probe,
|
||||
.remove = iproc_adc_remove,
|
||||
.remove_new = iproc_adc_remove,
|
||||
.driver = {
|
||||
.name = "iproc-static-adc",
|
||||
.of_match_table = iproc_adc_of_match,
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user