This is a note to let you know that I've just added the patch titled mmc: wbsd: fix double mmc_free_host() in wbsd_init() to the 4.19-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: mmc-wbsd-fix-double-mmc_free_host-in-wbsd_init.patch and it can be found in the queue-4.19 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From d83035433701919ac6db15f7737cbf554c36c1a6 Mon Sep 17 00:00:00 2001 From: Yang Yingliang <yangyingliang@xxxxxxxxxx> Date: Mon, 7 Aug 2023 20:44:42 +0800 Subject: mmc: wbsd: fix double mmc_free_host() in wbsd_init() From: Yang Yingliang <yangyingliang@xxxxxxxxxx> commit d83035433701919ac6db15f7737cbf554c36c1a6 upstream. mmc_free_host() has already be called in wbsd_free_mmc(), remove the mmc_free_host() in error path in wbsd_init(). Fixes: dc5b9b50fc9d ("mmc: wbsd: fix return value check of mmc_add_host()") Signed-off-by: Yang Yingliang <yangyingliang@xxxxxxxxxx> Cc: stable@xxxxxxxxxxxxxxx Link: https://lore.kernel.org/r/20230807124443.3431366-1-yangyingliang@xxxxxxxxxx Signed-off-by: Ulf Hansson <ulf.hansson@xxxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/mmc/host/wbsd.c | 2 -- 1 file changed, 2 deletions(-) --- a/drivers/mmc/host/wbsd.c +++ b/drivers/mmc/host/wbsd.c @@ -1713,8 +1713,6 @@ static int wbsd_init(struct device *dev, wbsd_release_resources(host); wbsd_free_mmc(dev); - - mmc_free_host(mmc); return ret; } Patches currently in stable-queue which might be from yangyingliang@xxxxxxxxxx are queue-4.19/mmc-wbsd-fix-double-mmc_free_host-in-wbsd_init.patch