aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew F. Davis <afd@ti.com>2015-09-15 15:34:22 -0500
committerMark Brown <broonie@kernel.org>2015-09-16 20:59:09 +0100
commit0f1d08dd6aaf7e9dd1039dce910c1f8ff58ee8c1 (patch)
tree026f098c3b4bb91038c4a096b4f95b848b542e17
parent6ff33f3902c3b1c5d0db6b1e2c70b6d76fba357f (diff)
downloadlemote-0f1d08dd6aaf7e9dd1039dce910c1f8ff58ee8c1.tar.gz
regulator: tps65218: Fix missing zero typo
Add missing zero to value. This will be needed when range checking is implemented. Signed-off-by: Andrew F. Davis <afd@ti.com> Acked-by: Dan Murphy <dmurphy@ti.com> Signed-off-by: Mark Brown <broonie@kernel.org>
-rw-r--r--drivers/regulator/tps65218-regulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/tps65218-regulator.c b/drivers/regulator/tps65218-regulator.c
index 7f97223f95c5bf..a02c1b9610396a 100644
--- a/drivers/regulator/tps65218-regulator.c
+++ b/drivers/regulator/tps65218-regulator.c
@@ -73,7 +73,7 @@ static const struct regulator_linear_range dcdc4_ranges[] = {
};
static struct tps_info tps65218_pmic_regs[] = {
- TPS65218_INFO(DCDC1, "DCDC1", 850000, 167500),
+ TPS65218_INFO(DCDC1, "DCDC1", 850000, 1675000),
TPS65218_INFO(DCDC2, "DCDC2", 850000, 1675000),
TPS65218_INFO(DCDC3, "DCDC3", 900000, 3400000),
TPS65218_INFO(DCDC4, "DCDC4", 1175000, 3400000),