From: Jia-Ju Bai Date: Fri, 5 Mar 2021 02:14:45 +0000 (-0800) Subject: memstick: core: Assign error code of mspro_block_resume() X-Git-Tag: v5.15~1251^2~58 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8c87dab92f90c4c8f45d7ac302da878e269d3695;p=platform%2Fkernel%2Flinux-starfive.git memstick: core: Assign error code of mspro_block_resume() When mspro_block_init_card() fails, no error return code of mspro_block_resume() is assigned/propagated. Let's fix this. Reported-by: TOTE Robot Signed-off-by: Jia-Ju Bai Link: https://lore.kernel.org/r/20210305021445.3435-1-baijiaju1990@gmail.com Signed-off-by: Ulf Hansson --- diff --git a/drivers/memstick/core/mspro_block.c b/drivers/memstick/core/mspro_block.c index afb892e..cf7fe0d 100644 --- a/drivers/memstick/core/mspro_block.c +++ b/drivers/memstick/core/mspro_block.c @@ -1382,7 +1382,8 @@ static int mspro_block_resume(struct memstick_dev *card) new_msb->card = card; memstick_set_drvdata(card, new_msb); - if (mspro_block_init_card(card)) + rc = mspro_block_init_card(card); + if (rc) goto out_free; for (cnt = 0; new_msb->attr_group.attrs[cnt]