summaryrefslogtreecommitdiff
path: root/drivers/regulator
diff options
context:
space:
mode:
authorLaxman Dewangan <ldewangan@nvidia.com>2012-07-25 13:27:22 +0530
committerVarun Wadekar <vwadekar@nvidia.com>2012-08-06 15:25:46 +0530
commitc95771df113d5f71b6070e1432d1eea3595c6640 (patch)
treefbaa8fb44d88059075cc51019e42ca8a45c3442a /drivers/regulator
parent8cec53bf2ba64043e58e68a3680ff4eecb69ff21 (diff)
regulator: tps80031: rename regulator-name enums
Renaming the regulator name from TPS80031_ID_* to TPS80031_REGULATOR_* for better readability. Change-Id: I627b6ddb78a60e44da2a869c0d51dd84166302ed Signed-off-by: Laxman Dewangan <ldewangan@nvidia.com> Reviewed-on: http://git-master/r/119972 Reviewed-by: Simone Willett <swillett@nvidia.com> Tested-by: Simone Willett <swillett@nvidia.com>
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/tps80031-regulator.c30
1 files changed, 15 insertions, 15 deletions
diff --git a/drivers/regulator/tps80031-regulator.c b/drivers/regulator/tps80031-regulator.c
index fabba426acf8..1635c6dcc10b 100644
--- a/drivers/regulator/tps80031-regulator.c
+++ b/drivers/regulator/tps80031-regulator.c
@@ -891,26 +891,26 @@ static int tps80031_regulator_preinit(struct device *parent,
if (tps80031_pdata->init_uV >= 0) {
switch (ri->desc.id) {
- case TPS80031_ID_VIO:
- case TPS80031_ID_SMPS1:
- case TPS80031_ID_SMPS2:
- case TPS80031_ID_SMPS3:
- case TPS80031_ID_SMPS4:
+ case TPS80031_REGULATOR_VIO:
+ case TPS80031_REGULATOR_SMPS1:
+ case TPS80031_REGULATOR_SMPS2:
+ case TPS80031_REGULATOR_SMPS3:
+ case TPS80031_REGULATOR_SMPS4:
ret = __tps80031_dcdc_set_voltage(parent, ri,
tps80031_pdata->init_uV,
tps80031_pdata->init_uV, 0);
break;
- case TPS80031_ID_LDO1:
- case TPS80031_ID_LDO2:
- case TPS80031_ID_LDO3:
- case TPS80031_ID_LDO4:
- case TPS80031_ID_LDO5:
- case TPS80031_ID_LDO6:
- case TPS80031_ID_LDO7:
- case TPS80031_ID_LDOUSB:
- case TPS80031_ID_LDOLN:
- case TPS80031_ID_VANA:
+ case TPS80031_REGULATOR_LDO1:
+ case TPS80031_REGULATOR_LDO2:
+ case TPS80031_REGULATOR_LDO3:
+ case TPS80031_REGULATOR_LDO4:
+ case TPS80031_REGULATOR_LDO5:
+ case TPS80031_REGULATOR_LDO6:
+ case TPS80031_REGULATOR_LDO7:
+ case TPS80031_REGULATOR_LDOUSB:
+ case TPS80031_REGULATOR_LDOLN:
+ case TPS80031_REGULATOR_VANA:
ret = __tps80031_ldo_set_voltage(parent, ri,
tps80031_pdata->init_uV,
tps80031_pdata->init_uV, 0);