diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3pandora.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3pandora.c | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/arm/mach-omap2/board-omap3pandora.c b/arch/arm/mach-omap2/board-omap3pandora.c index dd3af2be13b..2d2e6fc127a 100644 --- a/arch/arm/mach-omap2/board-omap3pandora.c +++ b/arch/arm/mach-omap2/board-omap3pandora.c @@ -32,6 +32,7 @@  #include <linux/input.h>  #include <linux/input/matrix_keypad.h>  #include <linux/gpio_keys.h> +#include <linux/mmc/host.h>  #include <linux/mmc/card.h>  #include <asm/mach-types.h> @@ -276,14 +277,14 @@ static void pandora_wl1251_init_card(struct mmc_card *card)  static struct omap2_hsmmc_info omap3pandora_mmc[] = {  	{  		.mmc		= 1, -		.wires		= 4, +		.caps		= MMC_CAP_4_BIT_DATA,  		.gpio_cd	= -EINVAL,  		.gpio_wp	= 126,  		.ext_clock	= 0,  	},  	{  		.mmc		= 2, -		.wires		= 4, +		.caps		= MMC_CAP_4_BIT_DATA,  		.gpio_cd	= -EINVAL,  		.gpio_wp	= 127,  		.ext_clock	= 1, @@ -291,7 +292,7 @@ static struct omap2_hsmmc_info omap3pandora_mmc[] = {  	},  	{  		.mmc		= 3, -		.wires		= 4, +		.caps		= MMC_CAP_4_BIT_DATA,  		.gpio_cd	= -EINVAL,  		.gpio_wp	= -EINVAL,  		.init_card	= pandora_wl1251_init_card,  |