aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-omap2/board-igep0020.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-05-22 12:27:39 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2012-05-22 12:27:39 -0400
commit8dca6010d44cc722a94dc6da96560f9083dac782 (patch)
treec804c272bc3d07a05459c2688e4b1c8b141d561c /arch/arm/mach-omap2/board-igep0020.c
parent9bc747bea5fad819e0c0ad96e6a67ea0640dfe2b (diff)
parent74c437532b8b5db53509963ec38e8424c56ff6f4 (diff)
Merge tag 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc
Pull non-critical arm-soc bug fixes from Olof Johansson: "These bug fixes were not important enough to have them included in the v3.4 release, mostly because they cover harmless warnings or unrealistic configurations. Instead we queue them up to be picked up in the next merge window." Fixed up trivial conflict in arch/arm/mach-omap2/board-omap4panda.c * tag 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc: ARM: spear6xx: remove board selection options ARM: OMAP: igep0020: Specify the VPLL2 regulator unconditionally ARM: OMAP2+: INTC: fix Kconfig option for TI81XX ARM: OMAP2+: remove incorrect irq_chip ack field ARM: OMAP4: Adding ID for OMAP4460 ES1.1 ARM: OMAP4: panda: add statics to remove warnings ARM: OMAP2+: Incorrect Register Offsets in OMAP Mailbox ARM: OMAP: fix trivial warnings for dspbridge arm: davinci: use for_each_set_bit_from ARM: OMAP4: hsmmc: check for null pointer ARM: OMAP1: fix compilation issue in board-sx1.c ARM: disable SUSPEND/ARCH_SUSPEND_POSSIBLE for ARCH_TEGRA ARM: davinci: da850-evm: fix section mismatch ARM: tegra: add pll_x freq table entry for 750MHz ARM: davinci: mark spi_board_info arguments as const ARM: davinci: fix incorrect pdctl next bit position
Diffstat (limited to 'arch/arm/mach-omap2/board-igep0020.c')
-rw-r--r--arch/arm/mach-omap2/board-igep0020.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/arch/arm/mach-omap2/board-igep0020.c b/arch/arm/mach-omap2/board-igep0020.c
index accbbb173198..4c1acecce93f 100644
--- a/arch/arm/mach-omap2/board-igep0020.c
+++ b/arch/arm/mach-omap2/board-igep0020.c
@@ -519,7 +519,10 @@ static void __init igep_i2c_init(void)
519{ 519{
520 int ret; 520 int ret;
521 521
522 omap3_pmic_get_config(&igep_twldata, TWL_COMMON_PDATA_USB, 0); 522 omap3_pmic_get_config(&igep_twldata, TWL_COMMON_PDATA_USB,
523 TWL_COMMON_REGULATOR_VPLL2);
524 igep_twldata.vpll2->constraints.apply_uV = true;
525 igep_twldata.vpll2->constraints.name = "VDVI";
523 526
524 if (machine_is_igep0020()) { 527 if (machine_is_igep0020()) {
525 /* 528 /*
@@ -533,10 +536,7 @@ static void __init igep_i2c_init(void)
533 536
534 igep_twldata.keypad = &igep2_keypad_pdata; 537 igep_twldata.keypad = &igep2_keypad_pdata;
535 /* Get common pmic data */ 538 /* Get common pmic data */
536 omap3_pmic_get_config(&igep_twldata, TWL_COMMON_PDATA_AUDIO, 539 omap3_pmic_get_config(&igep_twldata, TWL_COMMON_PDATA_AUDIO, 0);
537 TWL_COMMON_REGULATOR_VPLL2);
538 igep_twldata.vpll2->constraints.apply_uV = true;
539 igep_twldata.vpll2->constraints.name = "VDVI";
540 } 540 }
541 541
542 omap3_pmic_init("twl4030", &igep_twldata); 542 omap3_pmic_init("twl4030", &igep_twldata);