diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3touchbook.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3touchbook.c | 20 | 
1 files changed, 5 insertions, 15 deletions
diff --git a/arch/arm/mach-omap2/board-omap3touchbook.c b/arch/arm/mach-omap2/board-omap3touchbook.c index 80e82763ebd..a2d0d1971e2 100644 --- a/arch/arm/mach-omap2/board-omap3touchbook.c +++ b/arch/arm/mach-omap2/board-omap3touchbook.c @@ -311,18 +311,6 @@ static struct omap_board_mux board_mux[] __initdata = {  };  #endif -static void __init omap3_touchbook_init_early(void) -{ -	omap2_init_common_infrastructure(); -	omap2_init_common_devices(mt46h32m32lf6_sdrc_params, -				  mt46h32m32lf6_sdrc_params); -} - -static void __init omap3_touchbook_init_irq(void) -{ -	omap3_init_irq(); -} -  static struct platform_device *omap3_touchbook_devices[] __initdata = {  	&leds_gpio,  	&keys_gpio, @@ -367,6 +355,8 @@ static void __init omap3_touchbook_init(void)  	platform_add_devices(omap3_touchbook_devices,  			ARRAY_SIZE(omap3_touchbook_devices));  	omap_serial_init(); +	omap_sdrc_init(mt46h32m32lf6_sdrc_params, +				  mt46h32m32lf6_sdrc_params);  	omap_mux_init_gpio(170, OMAP_PIN_INPUT);  	/* REVISIT leave DVI powered down until it's needed ... */ @@ -386,11 +376,11 @@ static void __init omap3_touchbook_init(void)  MACHINE_START(TOUCHBOOK, "OMAP3 touchbook Board")  	/* Maintainer: Gregoire Gentil - http://www.alwaysinnovating.com */ -	.boot_params	= 0x80000100, +	.atag_offset	= 0x100,  	.reserve	= omap_reserve,  	.map_io		= omap3_map_io, -	.init_early	= omap3_touchbook_init_early, -	.init_irq	= omap3_touchbook_init_irq, +	.init_early	= omap3430_init_early, +	.init_irq	= omap3_init_irq,  	.init_machine	= omap3_touchbook_init,  	.timer		= &omap3_secure_timer,  MACHINE_END  |