diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3beagle.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 23 | 
1 files changed, 9 insertions, 14 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 91b4e1438ae..20c5dbea895 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -231,14 +231,6 @@ static struct omap_dss_board_info beagle_dss_data = {  	.default_device = &beagle_dvi_device,  }; -static struct platform_device beagle_dss_device = { -	.name          = "omapdss", -	.id            = -1, -	.dev            = { -		.platform_data = &beagle_dss_data, -	}, -}; -  static struct regulator_consumer_supply beagle_vdac_supply =  	REGULATOR_SUPPLY("vdda_dac", "omapdss"); @@ -438,9 +430,7 @@ static struct twl4030_usb_data beagle_usb_data = {  	.usb_mode	= T2_USB_MODE_ULPI,  }; -static struct twl4030_codec_audio_data beagle_audio_data = { -	.audio_mclk = 26000000, -}; +static struct twl4030_codec_audio_data beagle_audio_data;  static struct twl4030_codec_data beagle_codec_data = {  	.audio_mclk = 26000000, @@ -539,11 +529,15 @@ static struct platform_device keys_gpio = {  	},  }; -static void __init omap3_beagle_init_irq(void) +static void __init omap3_beagle_init_early(void)  {  	omap2_init_common_infrastructure();  	omap2_init_common_devices(mt46h32m32lf6_sdrc_params,  				  mt46h32m32lf6_sdrc_params); +} + +static void __init omap3_beagle_init_irq(void) +{  	omap_init_irq();  #ifdef CONFIG_OMAP_32K_TIMER  	omap2_gp_clockevent_set_gptimer(12); @@ -553,7 +547,6 @@ static void __init omap3_beagle_init_irq(void)  static struct platform_device *omap3_beagle_devices[] __initdata = {  	&leds_gpio,  	&keys_gpio, -	&beagle_dss_device,  };  static void __init omap3beagle_flash_init(void) @@ -666,6 +659,7 @@ static void __init omap3_beagle_init(void)  	omap3_beagle_i2c_init();  	platform_add_devices(omap3_beagle_devices,  			ARRAY_SIZE(omap3_beagle_devices)); +	omap_display_init(&beagle_dss_data);  	omap_serial_init();  	omap_mux_init_gpio(170, OMAP_PIN_INPUT); @@ -688,8 +682,9 @@ static void __init omap3_beagle_init(void)  MACHINE_START(OMAP3_BEAGLE, "OMAP3 Beagle Board")  	/* Maintainer: Syed Mohammed Khasim - http://beagleboard.org */  	.boot_params	= 0x80000100, -	.map_io		= omap3_map_io,  	.reserve	= omap_reserve, +	.map_io		= omap3_map_io, +	.init_early	= omap3_beagle_init_early,  	.init_irq	= omap3_beagle_init_irq,  	.init_machine	= omap3_beagle_init,  	.timer		= &omap_timer,  |