fsl_esdhc: Initialize mmc->b_max

commit 262951(MMC: make b_max unconditional) missed to update fsl_esdhc.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
Acked-by: Stefano Babic <sbabic@denx.de>
This commit is contained in:
Fabio Estevam 2011-05-12 09:33:27 +00:00 committed by Andy Fleming
parent bc897b1d4d
commit 1ed60d7ade
1 changed files with 1 additions and 0 deletions

View File

@ -525,6 +525,7 @@ int fsl_esdhc_initialize(bd_t *bis, struct fsl_esdhc_cfg *cfg)
mmc->f_min = 400000;
mmc->f_max = MIN(gd->sdhc_clk, 52000000);
mmc->b_max = 0;
mmc_register(mmc);
return 0;