diff options
Diffstat (limited to 'arch/arm/mach-omap2/twl-common.c')
-rw-r--r-- | arch/arm/mach-omap2/twl-common.c | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/arch/arm/mach-omap2/twl-common.c b/arch/arm/mach-omap2/twl-common.c index daa056ed8738..522435772168 100644 --- a/arch/arm/mach-omap2/twl-common.c +++ b/arch/arm/mach-omap2/twl-common.c | |||
@@ -99,7 +99,7 @@ static struct regulator_init_data omap3_vdac_idata = { | |||
99 | 99 | ||
100 | static struct regulator_consumer_supply omap3_vpll2_supplies[] = { | 100 | static struct regulator_consumer_supply omap3_vpll2_supplies[] = { |
101 | REGULATOR_SUPPLY("vdds_dsi", "omapdss"), | 101 | REGULATOR_SUPPLY("vdds_dsi", "omapdss"), |
102 | REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"), | 102 | REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"), |
103 | }; | 103 | }; |
104 | 104 | ||
105 | static struct regulator_init_data omap3_vpll2_idata = { | 105 | static struct regulator_init_data omap3_vpll2_idata = { |
@@ -235,6 +235,12 @@ static struct regulator_init_data omap4_vana_idata = { | |||
235 | }, | 235 | }, |
236 | }; | 236 | }; |
237 | 237 | ||
238 | static struct regulator_consumer_supply omap4_vcxio_supply[] = { | ||
239 | REGULATOR_SUPPLY("vdds_dsi", "omapdss_dss"), | ||
240 | REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.0"), | ||
241 | REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi.1"), | ||
242 | }; | ||
243 | |||
238 | static struct regulator_init_data omap4_vcxio_idata = { | 244 | static struct regulator_init_data omap4_vcxio_idata = { |
239 | .constraints = { | 245 | .constraints = { |
240 | .min_uV = 1800000, | 246 | .min_uV = 1800000, |
@@ -243,7 +249,10 @@ static struct regulator_init_data omap4_vcxio_idata = { | |||
243 | | REGULATOR_MODE_STANDBY, | 249 | | REGULATOR_MODE_STANDBY, |
244 | .valid_ops_mask = REGULATOR_CHANGE_MODE | 250 | .valid_ops_mask = REGULATOR_CHANGE_MODE |
245 | | REGULATOR_CHANGE_STATUS, | 251 | | REGULATOR_CHANGE_STATUS, |
252 | .always_on = true, | ||
246 | }, | 253 | }, |
254 | .num_consumer_supplies = ARRAY_SIZE(omap4_vcxio_supply), | ||
255 | .consumer_supplies = omap4_vcxio_supply, | ||
247 | }; | 256 | }; |
248 | 257 | ||
249 | static struct regulator_init_data omap4_vusb_idata = { | 258 | static struct regulator_init_data omap4_vusb_idata = { |