diff options
Diffstat (limited to 'arch/arm/mach-omap2/board-omap3beagle.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-omap3beagle.c | 14 | 
1 files changed, 2 insertions, 12 deletions
diff --git a/arch/arm/mach-omap2/board-omap3beagle.c b/arch/arm/mach-omap2/board-omap3beagle.c index 19bcd004d60..b6752ac5b97 100644 --- a/arch/arm/mach-omap2/board-omap3beagle.c +++ b/arch/arm/mach-omap2/board-omap3beagle.c @@ -228,14 +228,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"); @@ -435,9 +427,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, @@ -554,7 +544,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) @@ -621,6 +610,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);  |