drivers/mmc: Fix warning about usage of uninitialized variable

Because of -Werror, this causes a build error.

Change-Id: I37a8c4bbfe3f2ced5e17981a2814985919ad483b
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
This commit is contained in:
Antonio Nino Diaz 2018-08-10 13:04:02 +01:00
parent 5e4c590d84
commit cadb36cb0a
1 changed files with 1 additions and 1 deletions

View File

@ -221,7 +221,7 @@ static int mmc_fill_device_info(void)
unsigned int speed_idx;
unsigned int nb_blocks;
unsigned int freq_unit;
int ret;
int ret = 0;
struct mmc_csd_sd_v2 *csd_sd_v2;
switch (mmc_dev_info->mmc_dev_type) {