]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commitdiff
regulator: Simplify implementation of tps65912_get_voltage_dcdc
authorAxel Lin <axel.lin@gmail.com>
Wed, 14 Mar 2012 02:20:01 +0000 (10:20 +0800)
committerMark Brown <broonie@opensource.wolfsonmicro.com>
Wed, 14 Mar 2012 12:37:23 +0000 (12:37 +0000)
Call tps65912_get_sel_register instead of duplicating the same code.

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

index 988d0ec40d2e4461d17f14e20557138a2a28fb59..b36799b1f530d0bf81484d471eea483c30a4914e 100644 (file)
@@ -409,34 +409,13 @@ static int tps65912_get_voltage_dcdc(struct regulator_dev *dev)
        struct tps65912_reg *pmic = rdev_get_drvdata(dev);
        struct tps65912 *mfd = pmic->mfd;
        int id = rdev_get_id(dev);
-       int opvsel = 0, avsel = 0, sr, vsel;
+       int reg, vsel;
 
-       switch (id) {
-       case TPS65912_REG_DCDC1:
-               opvsel = tps65912_reg_read(mfd, TPS65912_DCDC1_OP);
-               avsel = tps65912_reg_read(mfd, TPS65912_DCDC1_AVS);
-               break;
-       case TPS65912_REG_DCDC2:
-               opvsel = tps65912_reg_read(mfd, TPS65912_DCDC2_OP);
-               avsel = tps65912_reg_read(mfd, TPS65912_DCDC2_AVS);
-               break;
-       case TPS65912_REG_DCDC3:
-               opvsel = tps65912_reg_read(mfd, TPS65912_DCDC3_OP);
-               avsel = tps65912_reg_read(mfd, TPS65912_DCDC3_AVS);
-               break;
-       case TPS65912_REG_DCDC4:
-               opvsel = tps65912_reg_read(mfd, TPS65912_DCDC4_OP);
-               avsel = tps65912_reg_read(mfd, TPS65912_DCDC4_AVS);
-               break;
-       default:
-               return -EINVAL;
-       }
+       reg = tps65912_get_sel_register(pmic, id);
+       if (reg < 0)
+               return reg;
 
-       sr = (opvsel & OP_SELREG_MASK) >> OP_SELREG_SHIFT;
-       if (sr)
-               vsel = avsel;
-       else
-               vsel = opvsel;
+       vsel = tps65912_reg_read(mfd, reg);
        vsel &= 0x3F;
 
        return tps65912_list_voltage_dcdc(dev, vsel);