aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/regulator')
-rw-r--r--drivers/regulator/tps51632-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps51632-regulator.c b/drivers/regulator/tps51632-regulator.c
index 34603640d6d9..e88bfe48303a 100644
--- a/drivers/regulator/tps51632-regulator.c
+++ b/drivers/regulator/tps51632-regulator.c
@@ -128,7 +128,7 @@ static int tps51632_dcdc_set_voltage_sel(struct regulator_dev *rdev,
128 if (vsel > TPS51632_MAX_VSEL) 128 if (vsel > TPS51632_MAX_VSEL)
129 return -EINVAL; 129 return -EINVAL;
130 130
131 ret = regmap_write(tps->regmap, TPS51632_VOLTAGE_SELECT_REG, vsel); 131 ret = regmap_write(tps->regmap, reg, vsel);
132 if (ret < 0) 132 if (ret < 0)
133 dev_err(tps->dev, "reg write failed, err %d\n", ret); 133 dev_err(tps->dev, "reg write failed, err %d\n", ret);
134 return ret; 134 return ret;