This is a note to let you know that I've just added the patch titled driver core: platform: Emit a warning if a remove callback returned non-zero to the 5.10-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: driver-core-platform-emit-a-warning-if-a-remove-call.patch and it can be found in the queue-5.10 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. commit 2f1ac60bc9668567f021c314312563951039f77b Author: Uwe Kleine-König <uwe@xxxxxxxxxxxxxxxxx> Date: Sun Feb 7 22:15:37 2021 +0100 driver core: platform: Emit a warning if a remove callback returned non-zero [ Upstream commit e5e1c209788138f33ca6558bf9f572f6904f486d ] The driver core ignores the return value of a bus' remove callback. However a driver returning an error code is a hint that there is a problem, probably a driver author who expects that returning e.g. -EBUSY has any effect. The right thing to do would be to make struct platform_driver::remove() return void. With the immense number of platform drivers this is however a big quest and I hope to prevent at least a few new drivers that return an error code here. Signed-off-by: Uwe Kleine-König <uwe@xxxxxxxxxxxxxxxxx> Link: https://lore.kernel.org/r/20210207211537.19992-1-uwe@xxxxxxxxxxxxxxxxx Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> Stable-dep-of: 55c421b36448 ("mmc: davinci: Don't strip remove function when driver is builtin") Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx> diff --git a/drivers/base/platform.c b/drivers/base/platform.c index 90166535a5c05..d0b15cbab0ff0 100644 --- a/drivers/base/platform.c +++ b/drivers/base/platform.c @@ -1305,13 +1305,16 @@ static int platform_remove(struct device *_dev) { struct platform_driver *drv = to_platform_driver(_dev->driver); struct platform_device *dev = to_platform_device(_dev); - int ret = 0; - if (drv->remove) - ret = drv->remove(dev); + if (drv->remove) { + int ret = drv->remove(dev); + + if (ret) + dev_warn(_dev, "remove callback returned a non-zero value. This will be ignored.\n"); + } dev_pm_domain_detach(_dev, true); - return ret; + return 0; } static void platform_shutdown(struct device *_dev)