diff options
author | Peter Ujfalusi <peter.ujfalusi@ti.com> | 2011-06-28 06:16:55 -0400 |
---|---|---|
committer | Tony Lindgren <tony@atomide.com> | 2011-06-29 04:16:50 -0400 |
commit | d19f579aae74d6df9276e244716cedd96895d566 (patch) | |
tree | 18f73a3f1a39a7d8fd27e3439ca1c5e49a226d76 /arch | |
parent | 7a559c7882db55c7a40dab19ea43ad747a51185a (diff) |
omap: board-omap3evm: Fix compilation error
Fix compilation error introduced with 786b01a8c1db0c0decca55d660a2a3ebd7cfb26b
(cleanup regulator supply definitions in mach-omap2).
Signed-off-by: Peter Ujfalusi <peter.ujfalusi@ti.com>
[tony@atomide.com: updated comments]
Signed-off-by: Tony Lindgren <tony@atomide.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mach-omap2/board-omap3evm.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-omap2/board-omap3evm.c b/arch/arm/mach-omap2/board-omap3evm.c index e2202ddae667..c2ea437065c3 100644 --- a/arch/arm/mach-omap2/board-omap3evm.c +++ b/arch/arm/mach-omap2/board-omap3evm.c | |||
@@ -510,7 +510,7 @@ static struct regulator_init_data omap3evm_vio = { | |||
510 | #define OMAP3EVM_WLAN_IRQ_GPIO (149) | 510 | #define OMAP3EVM_WLAN_IRQ_GPIO (149) |
511 | 511 | ||
512 | static struct regulator_consumer_supply omap3evm_vmmc2_supply[] = { | 512 | static struct regulator_consumer_supply omap3evm_vmmc2_supply[] = { |
513 | REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"); | 513 | REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1"), |
514 | }; | 514 | }; |
515 | 515 | ||
516 | /* VMMC2 for driving the WL12xx module */ | 516 | /* VMMC2 for driving the WL12xx module */ |
@@ -518,7 +518,7 @@ static struct regulator_init_data omap3evm_vmmc2 = { | |||
518 | .constraints = { | 518 | .constraints = { |
519 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, | 519 | .valid_ops_mask = REGULATOR_CHANGE_STATUS, |
520 | }, | 520 | }, |
521 | .num_consumer_supplies = ARRAY_SIZE(omap3evm_vmmc2_supply);, | 521 | .num_consumer_supplies = ARRAY_SIZE(omap3evm_vmmc2_supply), |
522 | .consumer_supplies = omap3evm_vmmc2_supply, | 522 | .consumer_supplies = omap3evm_vmmc2_supply, |
523 | }; | 523 | }; |
524 | 524 | ||