|
@@ -319,17 +319,21 @@ static struct twl4030_gpio_platform_data omap3pandora_gpio_data = {
|
|
|
.setup = omap3pandora_twl_gpio_setup,
|
|
|
};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_vmmc1_supply =
|
|
|
- REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0");
|
|
|
+static struct regulator_consumer_supply pandora_vmmc1_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vmmc", "omap_hsmmc.0"),
|
|
|
+};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_vmmc2_supply =
|
|
|
- REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1");
|
|
|
+static struct regulator_consumer_supply pandora_vmmc2_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vmmc", "omap_hsmmc.1")
|
|
|
+};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_vmmc3_supply =
|
|
|
- REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2");
|
|
|
+static struct regulator_consumer_supply pandora_vmmc3_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vmmc", "omap_hsmmc.2"),
|
|
|
+};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_vdda_dac_supply =
|
|
|
- REGULATOR_SUPPLY("vdda_dac", "omapdss_venc");
|
|
|
+static struct regulator_consumer_supply pandora_vdda_dac_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vdda_dac", "omapdss_venc"),
|
|
|
+};
|
|
|
|
|
|
static struct regulator_consumer_supply pandora_vdds_supplies[] = {
|
|
|
REGULATOR_SUPPLY("vdds_sdi", "omapdss"),
|
|
@@ -337,11 +341,13 @@ static struct regulator_consumer_supply pandora_vdds_supplies[] = {
|
|
|
REGULATOR_SUPPLY("vdds_dsi", "omapdss_dsi1"),
|
|
|
};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_vcc_lcd_supply =
|
|
|
- REGULATOR_SUPPLY("vcc", "display0");
|
|
|
+static struct regulator_consumer_supply pandora_vcc_lcd_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vcc", "display0"),
|
|
|
+};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_usb_phy_supply =
|
|
|
- REGULATOR_SUPPLY("hsusb0", "ehci-omap.0");
|
|
|
+static struct regulator_consumer_supply pandora_usb_phy_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("hsusb0", "ehci-omap.0"),
|
|
|
+};
|
|
|
|
|
|
/* ads7846 on SPI and 2 nub controllers on I2C */
|
|
|
static struct regulator_consumer_supply pandora_vaux4_supplies[] = {
|
|
@@ -350,8 +356,9 @@ static struct regulator_consumer_supply pandora_vaux4_supplies[] = {
|
|
|
REGULATOR_SUPPLY("vcc", "3-0067"),
|
|
|
};
|
|
|
|
|
|
-static struct regulator_consumer_supply pandora_adac_supply =
|
|
|
- REGULATOR_SUPPLY("vcc", "soc-audio");
|
|
|
+static struct regulator_consumer_supply pandora_adac_supply[] = {
|
|
|
+ REGULATOR_SUPPLY("vcc", "soc-audio"),
|
|
|
+};
|
|
|
|
|
|
/* VMMC1 for MMC1 pins CMD, CLK, DAT0..DAT3 (20 mA, plus card == max 220 mA) */
|
|
|
static struct regulator_init_data pandora_vmmc1 = {
|
|
@@ -364,8 +371,8 @@ static struct regulator_init_data pandora_vmmc1 = {
|
|
|
| REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_vmmc1_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc1_supply),
|
|
|
+ .consumer_supplies = pandora_vmmc1_supply,
|
|
|
};
|
|
|
|
|
|
/* VMMC2 for MMC2 pins CMD, CLK, DAT0..DAT3 (max 100 mA) */
|
|
@@ -379,8 +386,8 @@ static struct regulator_init_data pandora_vmmc2 = {
|
|
|
| REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_vmmc2_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc2_supply),
|
|
|
+ .consumer_supplies = pandora_vmmc2_supply,
|
|
|
};
|
|
|
|
|
|
/* VDAC for DSS driving S-Video */
|
|
@@ -394,8 +401,8 @@ static struct regulator_init_data pandora_vdac = {
|
|
|
.valid_ops_mask = REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_vdda_dac_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_vdda_dac_supply),
|
|
|
+ .consumer_supplies = pandora_vdda_dac_supply,
|
|
|
};
|
|
|
|
|
|
/* VPLL2 for digital video outputs */
|
|
@@ -424,8 +431,8 @@ static struct regulator_init_data pandora_vaux1 = {
|
|
|
.valid_ops_mask = REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_vcc_lcd_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_vcc_lcd_supply),
|
|
|
+ .consumer_supplies = pandora_vcc_lcd_supply,
|
|
|
};
|
|
|
|
|
|
/* VAUX2 for USB host PHY */
|
|
@@ -439,8 +446,8 @@ static struct regulator_init_data pandora_vaux2 = {
|
|
|
.valid_ops_mask = REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_usb_phy_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_usb_phy_supply),
|
|
|
+ .consumer_supplies = pandora_usb_phy_supply,
|
|
|
};
|
|
|
|
|
|
/* VAUX4 for ads7846 and nubs */
|
|
@@ -469,8 +476,8 @@ static struct regulator_init_data pandora_vsim = {
|
|
|
.valid_ops_mask = REGULATOR_CHANGE_MODE
|
|
|
| REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_adac_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_adac_supply),
|
|
|
+ .consumer_supplies = pandora_adac_supply,
|
|
|
};
|
|
|
|
|
|
/* Fixed regulator internal to Wifi module */
|
|
@@ -478,8 +485,8 @@ static struct regulator_init_data pandora_vmmc3 = {
|
|
|
.constraints = {
|
|
|
.valid_ops_mask = REGULATOR_CHANGE_STATUS,
|
|
|
},
|
|
|
- .num_consumer_supplies = 1,
|
|
|
- .consumer_supplies = &pandora_vmmc3_supply,
|
|
|
+ .num_consumer_supplies = ARRAY_SIZE(pandora_vmmc3_supply),
|
|
|
+ .consumer_supplies = pandora_vmmc3_supply,
|
|
|
};
|
|
|
|
|
|
static struct fixed_voltage_config pandora_vwlan = {
|