]> git.karo-electronics.de Git - mv-sheeva.git/commitdiff
regulator: Convert ab8499 to use get_voltage_sel()
authorAxel Lin <axel.lin@gmail.com>
Fri, 24 Feb 2012 09:15:45 +0000 (17:15 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Sun, 11 Mar 2012 20:48:43 +0000 (20:48 +0000)
This change is required to make ab8500_regulator_get_voltage_sel work.
The regulator core will call set_voltage_time_sel only when get_voltage_sel is
implemented.

Signed-off-by: Axel Lin <axel.lin@gmail.com>
Tested-by: Linus Walleij <linus.walleij@linaro.org>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/ab8500.c

index c9b92531ae601a75e4dd54f9f206d00b6fd11e54..c7ee4c15d6f52c7979558efd9d88919e747f3510 100644 (file)
@@ -201,7 +201,7 @@ static int ab8500_list_voltage(struct regulator_dev *rdev, unsigned selector)
        return info->voltages[selector];
 }
 
-static int ab8500_regulator_get_voltage(struct regulator_dev *rdev)
+static int ab8500_regulator_get_voltage_sel(struct regulator_dev *rdev)
 {
        int ret, val;
        struct ab8500_regulator_info *info = rdev_get_drvdata(rdev);
@@ -229,11 +229,9 @@ static int ab8500_regulator_get_voltage(struct regulator_dev *rdev)
        /* vintcore has a different layout */
        val = regval & info->voltage_mask;
        if (info->desc.id == AB8500_LDO_INTCORE)
-               ret = info->voltages[val >> 0x3];
+               return val >> 0x3;
        else
-               ret = info->voltages[val];
-
-       return ret;
+               return val;
 }
 
 static int ab8500_get_best_voltage_index(struct regulator_dev *rdev,
@@ -320,7 +318,7 @@ static struct regulator_ops ab8500_regulator_ops = {
        .enable         = ab8500_regulator_enable,
        .disable        = ab8500_regulator_disable,
        .is_enabled     = ab8500_regulator_is_enabled,
-       .get_voltage    = ab8500_regulator_get_voltage,
+       .get_voltage_sel = ab8500_regulator_get_voltage_sel,
        .set_voltage    = ab8500_regulator_set_voltage,
        .list_voltage   = ab8500_list_voltage,
        .enable_time    = ab8500_regulator_enable_time,