* Madhusudhan Chikkature <madhu.cr@xxxxxx> [080812 23:13]: > From: Madhusudhan Chikkature<madhu.cr@xxxxxx> > > ARM: OMAP3: Enable 4-bit support for HSMMC. > > This patch provides the fix to enable 4-bit support for HSMMC. Pushing today. Tony > Signed-off-by: Madhusudhan Chikkature<madhu.cr@xxxxxx> > Signed-off-by: purushotam<purushotam@xxxxxx> > --- > arch/arm/plat-omap/devices.c | 8 ++++++-- > 1 files changed, 6 insertions(+), 2 deletions(-) > > Index: linux-omap-2.6/arch/arm/plat-omap/devices.c > =================================================================== > --- linux-omap-2.6.orig/arch/arm/plat-omap/devices.c 2008-08-07 > 15:56:52.000000000 +0530 > +++ linux-omap-2.6/arch/arm/plat-omap/devices.c 2008-08-11 10:57:37.000000000 > +0530 > @@ -289,13 +289,17 @@ static void __init omap_init_mmc(void) > mmc = &mmc_conf->mmc[0]; > > if (cpu_is_omap2430() || cpu_is_omap34xx()) { > - if (mmc->enabled) > + if (mmc->enabled) { > + mmc1_data.conf = *mmc; > (void) platform_device_register(&mmc_omap_device1); > + } > > #if defined(CONFIG_ARCH_OMAP2430) || defined(CONFIG_ARCH_OMAP34XX) > mmc = &mmc_conf->mmc[1]; > - if (mmc->enabled) > + if (mmc->enabled) { > + mmc2_data.conf = *mmc; > (void) platform_device_register(&mmc_omap_device2); > + } > #endif > > return; > > -- To unsubscribe from this list: send the line "unsubscribe linux-omap" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html