diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3stalker.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3stalker.c | 9 | 
1 files changed, 5 insertions, 4 deletions
diff --git a/arch/arm/mach-omap2/board-omap3stalker.c b/arch/arm/mach-omap2/board-omap3stalker.c index 53a6cbcf974..495b989f904 100644 --- a/arch/arm/mach-omap2/board-omap3stalker.c +++ b/arch/arm/mach-omap2/board-omap3stalker.c @@ -33,6 +33,7 @@  #include <linux/interrupt.h>  #include <linux/smsc911x.h>  #include <linux/i2c/at24.h> +#include <linux/usb/phy.h>  #include <asm/mach-types.h>  #include <asm/mach/arch.h> @@ -43,8 +44,7 @@  #include "gpmc.h"  #include <linux/platform_data/mtd-nand-omap2.h>  #include <video/omapdss.h> -#include <video/omap-panel-generic-dpi.h> -#include <video/omap-panel-tfp410.h> +#include <video/omap-panel-data.h>  #include <linux/platform_data/spi-omap2-mcspi.h> @@ -361,7 +361,7 @@ static struct platform_device *omap3_stalker_devices[] __initdata = {  	&keys_gpio,  }; -static struct usbhs_omap_board_data usbhs_bdata __initconst = { +static struct usbhs_omap_platform_data usbhs_bdata __initdata = {  	.port_mode[0] = OMAP_USBHS_PORT_MODE_UNUSED,  	.port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,  	.port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED, @@ -404,6 +404,7 @@ static void __init omap3_stalker_init(void)  	omap_serial_init();  	omap_sdrc_init(mt46h32m32lf6_sdrc_params, NULL); +	usb_bind_phy("musb-hdrc.0.auto", 0, "twl4030_usb");  	usb_musb_init(NULL);  	usbhs_init(&usbhs_bdata);  	omap_ads7846_init(1, OMAP3_STALKER_TS_GPIO, 310, NULL); @@ -427,6 +428,6 @@ MACHINE_START(SBC3530, "OMAP3 STALKER")  	.handle_irq		= omap3_intc_handle_irq,  	.init_machine		= omap3_stalker_init,  	.init_late		= omap35xx_init_late, -	.timer			= &omap3_secure_timer, +	.init_time		= omap3_secure_sync32k_timer_init,  	.restart		= omap3xxx_restart,  MACHINE_END  |