Skip to content
Snippets Groups Projects
Commit a54d6811 authored by Haijun.Zhang's avatar Haijun.Zhang Committed by Pantelis Antoniou
Browse files

esdhc: memset mmc struct before putting into use


struct mmc should be clear to all '0' after malloc to avoid
unexpect variable value.

Like mmc->has_init = xxx.
In this case mmcinfo will believe the card had been initialized before
and skip the initialization.

Test on P5040 and T4240,
Error Log:

=> mmcinfo
Device: FSL_SDHC
Manufacturer ID: 0
OEM: 0
Name: Tran Speed: 0
Rd Block Len: 0
MMC version 0.0
High Capacity: No
Capacity: 0 Bytes
Bus Width: 0-bit
=>

Signed-off-by: default avatarHaijun Zhang <Haijun.Zhang@freescale.com>
Signed-off-by: default avatarXie Shaohui-B21989 <B21989@freescale.com>
Tested-by: default avatarRyan Barnett <rjbarnet@rockwellcollins.com>
Acked-by: default avatarPantelis Antoniou <panto@antoniou-consulting.com>
parent 511948b2
No related branches found
No related tags found
No related merge requests found
......@@ -533,6 +533,7 @@ int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg)
if (!mmc)
return -ENOMEM;
memset(mmc, 0, sizeof(struct mmc));
sprintf(mmc->name, "FSL_SDHC");
regs = (struct fsl_esdhc *)cfg->esdhc_base;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment