From: Dirk Behme Date: Sun, 15 May 2011 05:39:28 +0000 (+0000) Subject: MMC S5P: Fix typo X-Git-Tag: v2011.06-rc2~7^2^2~22 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=810423f405f32873675335c60ea9c3df1e8d3449;p=u-boot MMC S5P: Fix typo Fix typo resulting in the compilation error s5p_mmc.c: In function 's5p_mmc_initialize': s5p_mmc.c:469: error: 'struct mmc' has no member named 'm_bmax' introduced by commit "MMC: make b_max unconditional" (8feafcc49c0b7a9c541904f95a43dbef2fecc38b) Signed-off-by: Dirk Behme CC: John Rigby CC: Andy Fleming Signed-off-by: Minkyu Kang --- diff --git a/drivers/mmc/s5p_mmc.c b/drivers/mmc/s5p_mmc.c index 668c28bded..86447e05bd 100644 --- a/drivers/mmc/s5p_mmc.c +++ b/drivers/mmc/s5p_mmc.c @@ -466,7 +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->b_max = 0; mmc_register(mmc); return 0;