regulator: stm32-vrefbuf: Convert to platform remove callback returning void
authorUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Tue, 5 Dec 2023 12:26:19 +0000 (13:26 +0100)
committerMark Brown <broonie@kernel.org>
Mon, 11 Dec 2023 12:54:28 +0000 (12:54 +0000)
commit6f382a0c7ec12f85f4e40d5343ba53f16f543ccb
tree471362b6df0fc64bbfe36bd9e38c5e6e872426b4
parent0210a60aad02149d8503d259525bfbe0e99f8cb2
regulator: stm32-vrefbuf: 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>
Link: https://msgid.link/r/2e96cf99c8d97b728d891a745e8f94ee39fbfee8.1701778038.git.u.kleine-koenig@pengutronix.de
Signed-off-by: Mark Brown <broonie@kernel.org>
drivers/regulator/stm32-vrefbuf.c