mmc: remove useless extra semicolons

Signed-off-by: Yann Gautier <yann.gautier@foss.st.com>
Change-Id: If1d6b2040e482577292890e3554449096648c2ae
This commit is contained in:
Yann Gautier 2021-03-23 13:30:43 +01:00
parent 70eb88b7d9
commit 4ecd2417c8
1 changed files with 3 additions and 3 deletions

View File

@ -1,5 +1,5 @@
/*
* Copyright (c) 2018-2019, ARM Limited and Contributors. All rights reserved.
* Copyright (c) 2018-2021, ARM Limited and Contributors. All rights reserved.
*
* SPDX-License-Identifier: BSD-3-Clause
*/
@ -392,7 +392,7 @@ static int mmc_send_op_cond(void)
ret = mmc_reset_to_idle();
if (ret != 0) {
return ret;
};
}
for (n = 0; n < SEND_OP_COND_MAX_RETRIES; n++) {
ret = mmc_send_cmd(MMC_CMD(1), OCR_SECTOR_MODE |
@ -425,7 +425,7 @@ static int mmc_enumerate(unsigned int clk, unsigned int bus_width)
ret = mmc_reset_to_idle();
if (ret != 0) {
return ret;
};
}
if (mmc_dev_info->mmc_dev_type == MMC_IS_EMMC) {
ret = mmc_send_op_cond();