regulator: arizona-micsupp: Fix choosing selector in arizona_micsupp_map_voltage
authorAxel Lin <axel.lin@gmail.com>
Tue, 26 Jun 2012 10:37:58 +0000 (18:37 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 26 Jun 2012 10:48:05 +0000 (11:48 +0100)
If min_uV is in the range of: 3250001~3269999,
current code uses the equation:
        selector = DIV_ROUND_UP(min_uV - 1700000, 50000);
Then selector will be 32.
Then arizona_micsupp_list_voltage returns -EINVAL for this case which is wrong.

This patch fixes this issue:
If min_uV > 3200000, selector should be ARIZONA_MICSUPP_MAX_SELECTOR.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/arizona-micsupp.c

index 97d85b09a9405d2ccb348b8e0f67f719b77063dd..fdd7473ada4a39505d5e214a339c11e81feb3729 100644 (file)
@@ -57,7 +57,7 @@ static int arizona_micsupp_map_voltage(struct regulator_dev *rdev,
        if (min_uV < 1700000)
                min_uV = 1700000;
 
-       if (min_uV >= 3300000)
+       if (min_uV > 3200000)
                selector = ARIZONA_MICSUPP_MAX_SELECTOR;
        else
                selector = DIV_ROUND_UP(min_uV - 1700000, 50000);
This page took 0.048726 seconds and 5 git commands to generate.