diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3touchbook.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3touchbook.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-omap3touchbook.c b/arch/arm/mach-omap2/board-omap3touchbook.c index a0b851aafcc..ba9c118862e 100644 --- a/arch/arm/mach-omap2/board-omap3touchbook.c +++ b/arch/arm/mach-omap2/board-omap3touchbook.c @@ -100,6 +100,7 @@ static struct omap2_hsmmc_info mmc[] = {  		.mmc		= 1,  		.caps		= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA,  		.gpio_wp	= 29, +		.deferred	= true,  	},  	{}	/* Terminator */  }; @@ -125,7 +126,7 @@ static int touchbook_twl_gpio_setup(struct device *dev,  	}  	/* gpio + 0 is "mmc0_cd" (input/IRQ) */  	mmc[0].gpio_cd = gpio + 0; -	omap2_hsmmc_init(mmc); +	omap_hsmmc_late_init(mmc);  	/* REVISIT: need ehci-omap hooks for external VBUS  	 * power switch and overcurrent detect @@ -351,6 +352,7 @@ static void __init omap3_touchbook_init(void)  	pm_power_off = omap3_touchbook_poweroff; +	omap_hsmmc_init(mmc);  	omap3_touchbook_i2c_init();  	platform_add_devices(omap3_touchbook_devices,  			ARRAY_SIZE(omap3_touchbook_devices));  |