Commit 6e721f99 authored by Uwe Kleine-König's avatar Uwe Kleine-König Committed by Carlos Llamas
Browse files

UPSTREAM: platform: Provide a remove callback that returns no value



[ Upstream commit 5c5a7680 ]

struct platform_driver::remove returning an integer made driver authors
expect that returning an error code was proper error handling. However
the driver core ignores the error and continues to remove the device
because there is nothing the core could do anyhow and reentering the
remove callback again is only calling for trouble.

So this is an source for errors typically yielding resource leaks in the
error path.

As there are too many platform drivers to neatly convert them all to
return void in a single go, do it in several steps after this patch:

 a) Convert all drivers to implement .remove_new() returning void instead
    of .remove() returning int;
 b) Change struct platform_driver::remove() to return void and so make
    it identical to .remove_new();
 c) Change all drivers back to .remove() now with the better prototype;
 d) drop struct platform_driver::remove_new().

While this touches all drivers eventually twice, steps a) and c) can be
done one driver after another and so reduces coordination efforts
immensely and simplifies review.

Change-Id: I7da6828a301462bad53470cf94db94d55ac51d37
Signed-off-by: default avatarUwe Kleine-König <u.kleine-koenig@pengutronix.de>
Link: https://lore.kernel.org/r/20221209150914.3557650-1-u.kleine-koenig@pengutronix.de


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Stable-dep-of: 17955aba ("ASoC: fsl_micfil: Fix error handler with pm_runtime_enable")
Signed-off-by: default avatarSasha Levin <sashal@kernel.org>
(cherry picked from commit 9d3ac384)
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@google.com>
parent 07a8c091
Loading
Loading
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment