Message ID | 20210520073846.1920-1-zbestahu@gmail.com |
---|---|
State | New |
Headers | show |
Series | mmc: core: Return err directly if mmc_wait_for_cmd() fails | expand |
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; }