diff options
author | Felipe Balbi <balbi@ti.com> | 2014-07-08 15:09:12 -0400 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2014-07-09 04:26:21 -0400 |
commit | 42ab0f3915f22728f54bb1f3c0dcf38ab2335b5b (patch) | |
tree | c620de38f6765edc545f3f162d83ba5c7966f902 /drivers/regulator | |
parent | 0eada6a1fc85a98ce69a199e46925abd6a7001c2 (diff) |
regulator: tps65218: fix DCDC4 linear voltage range
The second range of this particular regulator,
starts at 1.60V, not as 1.55V as it was originally
implied by code.
Signed-off-by: Felipe Balbi <balbi@ti.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Cc: stable@vger.kernel.org
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/tps65218-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c index 9effe48c605e..8b7a0a9ebdfe 100644 --- a/drivers/regulator/tps65218-regulator.c +++ b/drivers/regulator/tps65218-regulator.c | |||
@@ -68,7 +68,7 @@ static const struct regulator_linear_range ldo1_dcdc3_ranges[] = { | |||
68 | 68 | ||
69 | static const struct regulator_linear_range dcdc4_ranges[] = { | 69 | static const struct regulator_linear_range dcdc4_ranges[] = { |
70 | REGULATOR_LINEAR_RANGE(1175000, 0x0, 0xf, 25000), | 70 | REGULATOR_LINEAR_RANGE(1175000, 0x0, 0xf, 25000), |
71 | REGULATOR_LINEAR_RANGE(1550000, 0x10, 0x34, 50000), | 71 | REGULATOR_LINEAR_RANGE(1600000, 0x10, 0x34, 50000), |
72 | }; | 72 | }; |
73 | 73 | ||
74 | static struct tps_info tps65218_pmic_regs[] = { | 74 | static struct tps_info tps65218_pmic_regs[] = { |