diff options
| author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-06-07 10:28:54 +0300 | 
|---|---|---|
| committer | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-07-04 18:43:38 +0300 | 
| commit | 827ed9aef2f13000d58616384ea6a22497e787b6 (patch) | |
| tree | fd6d117feaa7ac9c9e6195224efff07f230e867a /arch/arm/mach-omap2/board-overo.c | |
| parent | b22f954bae35be115a10c6426dc070f7d652b32e (diff) | |
| download | olio-linux-3.10-827ed9aef2f13000d58616384ea6a22497e787b6.tar.xz olio-linux-3.10-827ed9aef2f13000d58616384ea6a22497e787b6.zip  | |
OMAP3: Move common twl configuration to twl-common
Reduce the amount of duplicated code by moving the common
configuration for twl4030/5030/tpsxx to the twl-common file.
Use the omap3_pmic_get_config function from board files to
properly configure the PMIC with the common fields.
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
Acked-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch/arm/mach-omap2/board-overo.c')
| -rw-r--r-- | arch/arm/mach-omap2/board-overo.c | 17 | 
1 files changed, 2 insertions, 15 deletions
diff --git a/arch/arm/mach-omap2/board-overo.c b/arch/arm/mach-omap2/board-overo.c index 1bf2f39b9d0..776b44412db 100644 --- a/arch/arm/mach-omap2/board-overo.c +++ b/arch/arm/mach-omap2/board-overo.c @@ -433,10 +433,6 @@ static struct twl4030_gpio_platform_data overo_gpio_data = {  	.setup		= overo_twl_gpio_setup,  }; -static struct twl4030_usb_data overo_usb_data = { -	.usb_mode	= T2_USB_MODE_ULPI, -}; -  static struct regulator_init_data overo_vmmc1 = {  	.constraints = {  		.min_uV			= 1850000, @@ -480,19 +476,8 @@ static struct regulator_init_data overo_vpll2 = {  	.consumer_supplies	= overo_vdds_dsi_supply,  }; -static struct twl4030_codec_audio_data overo_audio_data; - -static struct twl4030_codec_data overo_codec_data = { -	.audio_mclk = 26000000, -	.audio = &overo_audio_data, -}; -  static struct twl4030_platform_data overo_twldata = { -	.irq_base	= TWL4030_IRQ_BASE, -	.irq_end	= TWL4030_IRQ_END,  	.gpio		= &overo_gpio_data, -	.usb		= &overo_usb_data, -	.codec		= &overo_codec_data,  	.vmmc1		= &overo_vmmc1,  	.vdac		= &overo_vdac,  	.vpll2		= &overo_vpll2, @@ -500,6 +485,8 @@ static struct twl4030_platform_data overo_twldata = {  static int __init overo_i2c_init(void)  { +	omap3_pmic_get_config(&overo_twldata, +			TWL_COMMON_PDATA_USB | TWL_COMMON_PDATA_AUDIO, 0);  	omap3_pmic_init("tps65950", &overo_twldata);  	/* i2c2 pins are used for gpio */  	omap_register_i2c_bus(3, 400, NULL, 0);  |