[PATCH] mmc: core: Return err directly if mmc_wait_for_cmd() fails

From: Yue Hu
Date: Thu May 20 2021 - 03:38:58 EST


From: Yue Hu <huyue2@xxxxxxxxxx>

We do not care the '*rocr' when mmc_send_op_cond() fails.

Signed-off-by: Yue Hu <huyue2@xxxxxxxxxx>
---
drivers/mmc/core/mmc_ops.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/mmc/core/mmc_ops.c b/drivers/mmc/core/mmc_ops.c
index 5756781..b282998 100644
--- a/drivers/mmc/core/mmc_ops.c
+++ b/drivers/mmc/core/mmc_ops.c
@@ -180,7 +180,7 @@ int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)
for (i = 100; i; i--) {
err = mmc_wait_for_cmd(host, &cmd, 0);
if (err)
- break;
+ goto out;

/* wait until reset completes */
if (mmc_host_is_spi(host)) {
@@ -208,7 +208,7 @@ int mmc_send_op_cond(struct mmc_host *host, u32 ocr, u32 *rocr)

if (rocr && !mmc_host_is_spi(host))
*rocr = cmd.resp[0];
-
+out:
return err;
}

--
1.9.1