diff options
author | Axel Lin <axel.lin@ingics.com> | 2013-09-12 09:38:12 +0800 |
---|---|---|
committer | Mark Brown <broonie@linaro.org> | 2013-09-17 00:52:13 +0100 |
commit | ae3e101286df40cdde49c4737e2868289ed7f35b (patch) | |
tree | 8c6076bb9a156772bafc3894c1c66fee47029c1e /drivers/regulator/palmas-regulator.c | |
parent | 087d30e3049bf86909895ef227f0893b8f710f38 (diff) | |
download | blackbird-op-linux-ae3e101286df40cdde49c4737e2868289ed7f35b.tar.gz blackbird-op-linux-ae3e101286df40cdde49c4737e2868289ed7f35b.zip |
regulator: palmas: Remove wrong comment for the equation calculating num_voltages
Current equation on the comment is wrong.
For linear mapping starting from 0, the equation is (maxV-minV)/stepV + 1.
Since the linear mapping for PALMAS is not all starting from 0, the equation
on the comment is not useful and misleading. Thus remove it.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Signed-off-by: Mark Brown <broonie@linaro.org>
Diffstat (limited to 'drivers/regulator/palmas-regulator.c')
-rw-r--r-- | drivers/regulator/palmas-regulator.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/regulator/palmas-regulator.c b/drivers/regulator/palmas-regulator.c index fba4faa422b8..7e2b165972e6 100644 --- a/drivers/regulator/palmas-regulator.c +++ b/drivers/regulator/palmas-regulator.c @@ -201,12 +201,6 @@ static unsigned int palmas_smps_ramp_delay[4] = {0, 10000, 5000, 2500}; #define SMPS_CTRL_MODE_ECO 0x02 #define SMPS_CTRL_MODE_PWM 0x03 -/* These values are derived from the data sheet. And are the number of steps - * where there is a voltage change, the ranges at beginning and end of register - * max/min values where there are no change are ommitted. - * - * So they are basically (maxV-minV)/stepV - */ #define PALMAS_SMPS_NUM_VOLTAGES 122 #define PALMAS_SMPS10_NUM_VOLTAGES 2 #define PALMAS_LDO_NUM_VOLTAGES 50 |