Commit b6f476c2 authored by Axel Lin's avatar Axel Lin Committed by Mark Brown

regulator: twl-regulator: Use twlreg_grp helper function

Since the twlreg_grp helper function is there, use it.
Signed-off-by: default avatarAxel Lin <axel.lin@gmail.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent 48c936d6
...@@ -175,15 +175,14 @@ static int twl6030reg_is_enabled(struct regulator_dev *rdev) ...@@ -175,15 +175,14 @@ static int twl6030reg_is_enabled(struct regulator_dev *rdev)
struct twlreg_info *info = rdev_get_drvdata(rdev); struct twlreg_info *info = rdev_get_drvdata(rdev);
int grp = 0, val; int grp = 0, val;
if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) {
grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP); grp = twlreg_grp(rdev);
if (grp < 0) if (grp < 0)
return grp; return grp;
if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
grp &= P1_GRP_6030; grp &= P1_GRP_6030;
else } else {
grp = 1; grp = 1;
}
val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE); val = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_STATE);
val = TWL6030_CFG_STATE_APP(val); val = TWL6030_CFG_STATE_APP(val);
...@@ -197,7 +196,7 @@ static int twl4030reg_enable(struct regulator_dev *rdev) ...@@ -197,7 +196,7 @@ static int twl4030reg_enable(struct regulator_dev *rdev)
int grp; int grp;
int ret; int ret;
grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP); grp = twlreg_grp(rdev);
if (grp < 0) if (grp < 0)
return grp; return grp;
...@@ -215,7 +214,7 @@ static int twl6030reg_enable(struct regulator_dev *rdev) ...@@ -215,7 +214,7 @@ static int twl6030reg_enable(struct regulator_dev *rdev)
int ret; int ret;
if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP); grp = twlreg_grp(rdev);
if (grp < 0) if (grp < 0)
return grp; return grp;
...@@ -245,7 +244,7 @@ static int twl4030reg_disable(struct regulator_dev *rdev) ...@@ -245,7 +244,7 @@ static int twl4030reg_disable(struct regulator_dev *rdev)
int grp; int grp;
int ret; int ret;
grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP); grp = twlreg_grp(rdev);
if (grp < 0) if (grp < 0)
return grp; return grp;
...@@ -357,7 +356,7 @@ static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode) ...@@ -357,7 +356,7 @@ static int twl6030reg_set_mode(struct regulator_dev *rdev, unsigned mode)
int val; int val;
if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS))) if (!(twl_class_is_6030() && (info->features & TWL6025_SUBCLASS)))
grp = twlreg_read(info, TWL_MODULE_PM_RECEIVER, VREG_GRP); grp = twlreg_grp(rdev);
if (grp < 0) if (grp < 0)
return grp; return grp;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment