summaryrefslogtreecommitdiffstats
path: root/drivers/regulator/tps51632-regulator.c
diff options
context:
space:
mode:
authorMark Brown2012-11-28 20:24:48 +0100
committerMark Brown2012-11-28 20:24:48 +0100
commit5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572 (patch)
treef28c0307e82adf901277ae4e877dd2db7b620317 /drivers/regulator/tps51632-regulator.c
parentregulator: tps51632: Use linear_min_sel and regulator_[map|list]_voltage_linear (diff)
parentregulator: tps51632: Fix writing to wrong register when enable_pwm_dvfs is set (diff)
downloadkernel-qcow2-linux-5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572.tar.gz
kernel-qcow2-linux-5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572.tar.xz
kernel-qcow2-linux-5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572.zip
Merge branch 'topic/tps51632' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator into regulator-min
Conflicts: drivers/regulator/tps51632-regulator.c
Diffstat (limited to 'drivers/regulator/tps51632-regulator.c')
-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 dce5eb3fa706..7c4e8a6e1d5d 100644
--- a/drivers/regulator/tps51632-regulator.c
+++ b/drivers/regulator/tps51632-regulator.c
@@ -122,7 +122,7 @@ static int tps51632_dcdc_set_voltage_sel(struct regulator_dev *rdev,
if (selector > TPS51632_MAX_VSEL)
return -EINVAL;
- ret = regmap_write(tps->regmap, TPS51632_VOLTAGE_SELECT_REG, selector);
+ ret = regmap_write(tps->regmap, reg, selector);
if (ret < 0)
dev_err(tps->dev, "reg write failed, err %d\n", ret);
return ret;