diff options
author | John Rigby <john.rigby@linaro.org> | 2011-04-18 05:50:08 +0000 |
---|---|---|
committer | Andy Fleming <afleming@freescale.com> | 2011-04-29 03:21:54 -0500 |
commit | 8feafcc49c0b7a9c541904f95a43dbef2fecc38b (patch) | |
tree | 0ba20c111634ddbb2513db50d3a3f05009f2cc08 /drivers/mmc/s5p_mmc.c | |
parent | 28df15e0234a773cfec98c2775915abe1472db3c (diff) | |
download | u-boot-imx-8feafcc49c0b7a9c541904f95a43dbef2fecc38b.zip u-boot-imx-8feafcc49c0b7a9c541904f95a43dbef2fecc38b.tar.gz u-boot-imx-8feafcc49c0b7a9c541904f95a43dbef2fecc38b.tar.bz2 |
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>
Diffstat (limited to 'drivers/mmc/s5p_mmc.c')
-rw-r--r-- | drivers/mmc/s5p_mmc.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/mmc/s5p_mmc.c b/drivers/mmc/s5p_mmc.c index 0323800..668c28b 100644 --- a/drivers/mmc/s5p_mmc.c +++ b/drivers/mmc/s5p_mmc.c @@ -466,6 +466,7 @@ static int s5p_mmc_initialize(int dev_index, int bus_width) mmc_host[dev_index].clock = 0; mmc_host[dev_index].reg = s5p_get_base_mmc(dev_index); + mmc->m_bmax = 0; mmc_register(mmc); return 0; |