mirror of
https://xff.cz/git/u-boot/
synced 2025-11-02 03:17:29 +01:00
MMC: make b_max unconditional
Make existing field b_max field in struct mmc unconditional and use it instead of CONFIG_SYS_MMC_MAX_BLK_COUNT in mmc_bread and mmc_bwrite. Initialize b_max to CONFIG_SYS_MMC_MAX_BLK_COUNT in mmc_register if it has not been initialized by the hw driver. Initialize b_max to 0 in all callers to mmc_register. Signed-off-by: John Rigby <john.rigby@linaro.org> Signed-off-by: Andy Fleming <afleming@freescale.com>
This commit is contained in:
@@ -465,6 +465,8 @@ int omap_mmc_init(int dev_index)
|
||||
mmc->f_min = 400000;
|
||||
mmc->f_max = 52000000;
|
||||
|
||||
mmc->b_max = 0;
|
||||
|
||||
mmc_register(mmc);
|
||||
|
||||
return 0;
|
||||
|
||||
Reference in New Issue
Block a user