]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
regulator: mc13892: Convert mc13892_sw_regulator_ops to get_voltage_sel
authorAxel Lin <axel.lin@gmail.com>
Thu, 19 Jul 2012 07:11:39 +0000 (15:11 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Tue, 28 Aug 2012 18:00:24 +0000 (11:00 -0700)
Signed-off-by: Axel Lin <axel.lin@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
drivers/regulator/mc13892-regulator.c

index 5d1d487c47af31f546d80a937a02dab9646b41e5..09265f02ed37e6e28ce6dc0da4b31df9895b6376 100644 (file)
@@ -393,11 +393,11 @@ static struct regulator_ops mc13892_gpo_regulator_ops = {
        .get_voltage = mc13xxx_fixed_regulator_get_voltage,
 };
 
-static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
+static int mc13892_sw_regulator_get_voltage_sel(struct regulator_dev *rdev)
 {
        struct mc13xxx_regulator_priv *priv = rdev_get_drvdata(rdev);
        int ret, id = rdev_get_id(rdev);
-       unsigned int val, hi;
+       unsigned int val;
 
        dev_dbg(rdev_get_dev(rdev), "%s id: %d\n", __func__, id);
 
@@ -408,17 +408,11 @@ static int mc13892_sw_regulator_get_voltage(struct regulator_dev *rdev)
        if (ret)
                return ret;
 
-       hi  = val & MC13892_SWITCHERS0_SWxHI;
        val = (val & mc13892_regulators[id].vsel_mask)
                >> mc13892_regulators[id].vsel_shift;
 
        dev_dbg(rdev_get_dev(rdev), "%s id: %d val: %d\n", __func__, id, val);
 
-       if (hi)
-               val = (25000 * val) + 1100000;
-       else
-               val = (25000 * val) + 600000;
-
        return val;
 }
 
@@ -453,7 +447,7 @@ static int mc13892_sw_regulator_set_voltage_sel(struct regulator_dev *rdev,
 static struct regulator_ops mc13892_sw_regulator_ops = {
        .list_voltage = regulator_list_voltage_table,
        .set_voltage_sel = mc13892_sw_regulator_set_voltage_sel,
-       .get_voltage = mc13892_sw_regulator_get_voltage,
+       .get_voltage_sel = mc13892_sw_regulator_get_voltage_sel,
 };
 
 static int mc13892_vcam_set_mode(struct regulator_dev *rdev, unsigned int mode)