diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-devkit8000.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-devkit8000.c | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 87cdb862356..a2010f07de3 100644 --- a/arch/arm/mach-omap2/board-devkit8000.c +++ b/arch/arm/mach-omap2/board-devkit8000.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 */  }; @@ -228,7 +229,7 @@ static int devkit8000_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);  	/* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */  	gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1; @@ -635,6 +636,7 @@ static void __init devkit8000_init(void)  	omap_dm9000_init(); +	omap_hsmmc_init(mmc);  	devkit8000_i2c_init();  	omap_dm9000_resources[2].start = gpio_to_irq(OMAP_DM9000_GPIO_IRQ);  	platform_add_devices(devkit8000_devices,  |