diff options
author | Lee Jones <lee.jones@linaro.org> | 2013-06-07 17:11:28 +0100 |
---|---|---|
committer | Mark Brown <broonielinaro.org> | 2013-06-11 12:50:00 +0100 |
commit | ce6f5ea3a7240c15e5775d5b9c5c57629943ca6c (patch) | |
tree | 180d6fcac976e0507cc66e1b5b7ea129d081338e /drivers | |
parent | 30aa4b26c00f5c5ae6081f85e7adca47dcb24e29 (diff) | |
download | linux-ce6f5ea3a7240c15e5775d5b9c5c57629943ca6c.tar.gz linux-ce6f5ea3a7240c15e5775d5b9c5c57629943ca6c.tar.xz |
regulator: ab8500: Provide supply names for the AUX regulators
On some platforms the AUX[1|2|3] regulators are supplied voltage by
a separate regulator. For example on Snowball these are provided by
the EXT3. If we list them here, we can supply voltage to them by
simply listing them in as a consumer of EXT3 in the Snowball case.
Signed-off-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Mark Brown <broonielinaro.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/regulator/ab8500.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c index dfc790196b34..bb02108c95e1 100644 --- a/drivers/regulator/ab8500.c +++ b/drivers/regulator/ab8500.c @@ -719,6 +719,7 @@ static struct ab8500_regulator_info .n_voltages = ARRAY_SIZE(ldo_vauxn_voltages), .volt_table = ldo_vauxn_voltages, .enable_time = 200, + .supply_name = "vin", }, .load_lp_uA = 5000, .update_bank = 0x04, @@ -741,6 +742,7 @@ static struct ab8500_regulator_info .n_voltages = ARRAY_SIZE(ldo_vauxn_voltages), .volt_table = ldo_vauxn_voltages, .enable_time = 200, + .supply_name = "vin", }, .load_lp_uA = 5000, .update_bank = 0x04, @@ -763,6 +765,7 @@ static struct ab8500_regulator_info .n_voltages = ARRAY_SIZE(ldo_vaux3_voltages), .volt_table = ldo_vaux3_voltages, .enable_time = 450, + .supply_name = "vin", }, .load_lp_uA = 5000, .update_bank = 0x04, |