Skip to content

Commit

Permalink
regulator: mc13xxx: Fix voltage checking for mc13xxx_fixed_regulator_…
Browse files Browse the repository at this point in the history
…set_voltage

The voltage range checking should be to ensure mc13xxx_regulators[id].voltages[0]
falls with min_uV and max_uV.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
  • Loading branch information
Axel Lin authored and Mark Brown committed Jun 17, 2012
1 parent e08ef73 commit ee5e625
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions drivers/regulator/mc13xxx-regulator-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,8 +158,8 @@ int mc13xxx_fixed_regulator_set_voltage(struct regulator_dev *rdev, int min_uV,
dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n",
__func__, id, min_uV, max_uV);

if (min_uV >= mc13xxx_regulators[id].voltages[0] &&
max_uV <= mc13xxx_regulators[id].voltages[0])
if (min_uV <= mc13xxx_regulators[id].voltages[0] &&
mc13xxx_regulators[id].voltages[0] <= max_uV)
return 0;
else
return -EINVAL;
Expand Down

0 comments on commit ee5e625

Please sign in to comment.