Unverified Commit 6902e66a authored by Dimitris Papastamos's avatar Dimitris Papastamos Committed by GitHub
Browse files

Merge pull request #1518 from antonio-nino-diaz-arm/an/fix_mmc

mmc: Fix warning about usage of uninitialized variable
parents 5e4c590d cadb36cb
......@@ -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) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment