diff options
author | Axel Lin <axel.lin@gmail.com> | 2010-05-05 23:33:36 -0400 |
---|---|---|
committer | Liam Girdwood <lrg@slimlogic.co.uk> | 2010-05-25 05:16:02 -0400 |
commit | 1dcc434b52ff25416b225f6ac229fc775867303a (patch) | |
tree | 73c6789ad6cbf1dc8c190108599730a1f688c94e /drivers/regulator | |
parent | 9f79e9db2e282857912bcfe7f741bcdd5c46e860 (diff) |
mc13783-regulator: fix vaild voltage range checking for mc13783_fixed_regulator_set_voltage
In the case of "min_uV == max_uV == mc13783_regulators[id].voltages[0]",
mc13783_fixed_regulator_set_voltage should return 0 instead of -EINVAL.
This patch also adds a missing ">" character for MODULE_AUTHOR, a trivial fix.
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Liam Girdwood <lrg@slimlogic.co.uk>
Acked-by: Sascha Hauer <s.hauer@pengutronix.de>
Acked-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Signed-off-by: Liam Girdwood <lrg@slimlogic.co.uk>
Diffstat (limited to 'drivers/regulator')
-rw-r--r-- | drivers/regulator/mc13783-regulator.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/regulator/mc13783-regulator.c b/drivers/regulator/mc13783-regulator.c index ad036dd8da13..4597d508a229 100644 --- a/drivers/regulator/mc13783-regulator.c +++ b/drivers/regulator/mc13783-regulator.c | |||
@@ -440,8 +440,8 @@ static int mc13783_fixed_regulator_set_voltage(struct regulator_dev *rdev, | |||
440 | dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n", | 440 | dev_dbg(rdev_get_dev(rdev), "%s id: %d min_uV: %d max_uV: %d\n", |
441 | __func__, id, min_uV, max_uV); | 441 | __func__, id, min_uV, max_uV); |
442 | 442 | ||
443 | if (min_uV > mc13783_regulators[id].voltages[0] && | 443 | if (min_uV >= mc13783_regulators[id].voltages[0] && |
444 | max_uV < mc13783_regulators[id].voltages[0]) | 444 | max_uV <= mc13783_regulators[id].voltages[0]) |
445 | return 0; | 445 | return 0; |
446 | else | 446 | else |
447 | return -EINVAL; | 447 | return -EINVAL; |
@@ -649,6 +649,6 @@ static void __exit mc13783_regulator_exit(void) | |||
649 | module_exit(mc13783_regulator_exit); | 649 | module_exit(mc13783_regulator_exit); |
650 | 650 | ||
651 | MODULE_LICENSE("GPL v2"); | 651 | MODULE_LICENSE("GPL v2"); |
652 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de"); | 652 | MODULE_AUTHOR("Sascha Hauer <s.hauer@pengutronix.de>"); |
653 | MODULE_DESCRIPTION("Regulator Driver for Freescale MC13783 PMIC"); | 653 | MODULE_DESCRIPTION("Regulator Driver for Freescale MC13783 PMIC"); |
654 | MODULE_ALIAS("platform:mc13783-regulator"); | 654 | MODULE_ALIAS("platform:mc13783-regulator"); |