aboutsummaryrefslogtreecommitdiff
path: root/drivers/regulator/tps65217-regulator.c
diff options
context:
space:
mode:
authorGravatar Axel Lin <axel.lin@ingics.com> 2019-03-24 14:00:04 +0800
committerGravatar Mark Brown <broonie@kernel.org> 2019-03-26 13:57:32 +0000
commit0b5e200cc7ee339694693a6d89816b66ccbd663a (patch)
tree96fa564b326d04462c542be5dc049771f853fa8a /drivers/regulator/tps65217-regulator.c
parentregulator: core: fix error path for regulator_set_voltage_unlocked (diff)
downloadlinux-0b5e200cc7ee339694693a6d89816b66ccbd663a.tar.gz
linux-0b5e200cc7ee339694693a6d89816b66ccbd663a.tar.bz2
linux-0b5e200cc7ee339694693a6d89816b66ccbd663a.zip
regulator: tps65217: Fix off-by-one for latest seletor of tps65217_uv1_ranges
According to the datasheet the latest seletor 11 1111b = 3.3 V. Signed-off-by: Axel Lin <axel.lin@ingics.com> Signed-off-by: Mark Brown <broonie@kernel.org>
Diffstat (limited to 'drivers/regulator/tps65217-regulator.c')
-rw-r--r--drivers/regulator/tps65217-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps65217-regulator.c b/drivers/regulator/tps65217-regulator.c
index d84fab616abf..546fb5cf2023 100644
--- a/drivers/regulator/tps65217-regulator.c
+++ b/drivers/regulator/tps65217-regulator.c
@@ -61,7 +61,7 @@ static const struct regulator_linear_range tps65217_uv1_ranges[] = {
REGULATOR_LINEAR_RANGE(1550000, 25, 30, 50000),
REGULATOR_LINEAR_RANGE(1850000, 31, 52, 50000),
REGULATOR_LINEAR_RANGE(3000000, 53, 55, 100000),
- REGULATOR_LINEAR_RANGE(3300000, 56, 62, 0),
+ REGULATOR_LINEAR_RANGE(3300000, 56, 63, 0),
};
static const struct regulator_linear_range tps65217_uv2_ranges[] = {