summaryrefslogtreecommitdiff
path: root/drivers/regulator/tps6524x-regulator.c
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2012-06-25 10:39:13 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2012-06-25 10:39:13 -0700
commitbbcaf41118809b2a4b05e69cf298d379ebb734d1 (patch)
treedebdacc7de009620f39cbae552e701ccef44bcf2 /drivers/regulator/tps6524x-regulator.c
parent5c0a981fb1cacddc9a35dd87ea74045abd640942 (diff)
parenta68de074613abd028b2ce63366d18db9c29e15d2 (diff)
downloadlinux-bbcaf41118809b2a4b05e69cf298d379ebb734d1.tar.gz
linux-bbcaf41118809b2a4b05e69cf298d379ebb734d1.tar.bz2
linux-bbcaf41118809b2a4b05e69cf298d379ebb734d1.zip
Merge tag 'regulator-3.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator
Pull regulator fixes from Mark Brown: "A few small, driver specific bug fixes, nothing exciting here but all needed if you happen to be using the affected hardware." * tag 'regulator-3.5' of git://git.kernel.org/pub/scm/linux/kernel/git/broonie/regulator: regulator: palmas: fix regmap offsets for enable/disable regulator: tps6524x: Fix get_voltage_sel for fixed voltage regulator: tps65023: Fix mask for LDOs output voltage select control
Diffstat (limited to 'drivers/regulator/tps6524x-regulator.c')
-rw-r--r--drivers/regulator/tps6524x-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps6524x-regulator.c b/drivers/regulator/tps6524x-regulator.c
index b88b3df82381..1b299aacf22f 100644
--- a/drivers/regulator/tps6524x-regulator.c
+++ b/drivers/regulator/tps6524x-regulator.c
@@ -482,7 +482,7 @@ static int get_voltage_sel(struct regulator_dev *rdev)
info = &supply_info[rdev_get_id(rdev)];
if (info->flags & FIXED_VOLTAGE)
- return info->fixed_voltage;
+ return 0;
ret = read_field(hw, &info->voltage);
if (ret < 0)