diff options
author | Graeme Gregory <[email protected]> | 2013-02-23 16:35:40 +0000 |
---|---|---|
committer | Mark Brown <[email protected]> | 2013-03-01 15:42:04 +0800 |
commit | a7dddf2757d09ba38683b359a721dc2efe85cd24 (patch) | |
tree | 0b86cffe68e9ba11742ad7bb8c6ffaad6d784a42 | |
parent | 2730fd82cbb922e6be8df08ba32c21be41757d3d (diff) |
regulator: palmas: fix number of SMPS voltages
Number of voltages for SMPS regulators was off by one.
Signed-off-by: Graeme Gregory <[email protected]>
Signed-off-by: Ian Lartey <[email protected]>
Acked-by: Laxman Dewangan <[email protected]>
Signed-off-by: Mark Brown <[email protected]>
-rw-r--r-- | drivers/regulator/palmas-regulator.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index cde13bb5a8fb..39cf14606784 100644 --- a/drivers/regulator/palmas-regulator.c +++ b/drivers/regulator/palmas-regulator.c @@ -4,6 +4,7 @@ * Copyright 2011-2012 Texas Instruments Inc. * * Author: Graeme Gregory <[email protected]> + * Author: Ian Lartey <[email protected]> * * This program is free software; you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the @@ -156,7 +157,7 @@ static const struct regs_info palmas_regs_info[] = { * * So they are basically (maxV-minV)/stepV */ -#define PALMAS_SMPS_NUM_VOLTAGES 116 +#define PALMAS_SMPS_NUM_VOLTAGES 117 #define PALMAS_SMPS10_NUM_VOLTAGES 2 #define PALMAS_LDO_NUM_VOLTAGES 50 |