diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-28 23:24:48 +0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2012-11-28 23:24:48 +0400 |
commit | 5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572 (patch) | |
tree | f28c0307e82adf901277ae4e877dd2db7b620317 /drivers/regulator/tps51632-regulator.c | |
parent | bd0ec7c1e52423429d9ee7b34e2c899f01db01b0 (diff) | |
parent | 9997f3ffbbcde01bcd5966eeb26bc41243715021 (diff) | |
download | linux-5d6e6ffc400dbc3ea0cc58b8b6f9d9ac748d6572.tar.xz |
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.c | 2 |
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; |