|
@@ -160,7 +160,7 @@ static int wm831x_gp_ldo_set_suspend_voltage(struct regulator_dev *rdev,
|
|
|
return wm831x_gp_ldo_set_voltage_int(rdev, reg, uV, uV, &selector);
|
|
|
}
|
|
|
|
|
|
-static int wm831x_gp_ldo_get_voltage(struct regulator_dev *rdev)
|
|
|
+static int wm831x_gp_ldo_get_voltage_sel(struct regulator_dev *rdev)
|
|
|
{
|
|
|
struct wm831x_ldo *ldo = rdev_get_drvdata(rdev);
|
|
|
struct wm831x *wm831x = ldo->wm831x;
|
|
@@ -173,7 +173,7 @@ static int wm831x_gp_ldo_get_voltage(struct regulator_dev *rdev)
|
|
|
|
|
|
ret &= WM831X_LDO1_ON_VSEL_MASK;
|
|
|
|
|
|
- return wm831x_gp_ldo_list_voltage(rdev, ret);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
static unsigned int wm831x_gp_ldo_get_mode(struct regulator_dev *rdev)
|
|
@@ -293,7 +293,7 @@ static unsigned int wm831x_gp_ldo_get_optimum_mode(struct regulator_dev *rdev,
|
|
|
|
|
|
static struct regulator_ops wm831x_gp_ldo_ops = {
|
|
|
.list_voltage = wm831x_gp_ldo_list_voltage,
|
|
|
- .get_voltage = wm831x_gp_ldo_get_voltage,
|
|
|
+ .get_voltage_sel = wm831x_gp_ldo_get_voltage_sel,
|
|
|
.set_voltage = wm831x_gp_ldo_set_voltage,
|
|
|
.set_suspend_voltage = wm831x_gp_ldo_set_suspend_voltage,
|
|
|
.get_mode = wm831x_gp_ldo_get_mode,
|
|
@@ -465,7 +465,7 @@ static int wm831x_aldo_set_suspend_voltage(struct regulator_dev *rdev,
|
|
|
return wm831x_aldo_set_voltage_int(rdev, reg, uV, uV, &selector);
|
|
|
}
|
|
|
|
|
|
-static int wm831x_aldo_get_voltage(struct regulator_dev *rdev)
|
|
|
+static int wm831x_aldo_get_voltage_sel(struct regulator_dev *rdev)
|
|
|
{
|
|
|
struct wm831x_ldo *ldo = rdev_get_drvdata(rdev);
|
|
|
struct wm831x *wm831x = ldo->wm831x;
|
|
@@ -478,7 +478,7 @@ static int wm831x_aldo_get_voltage(struct regulator_dev *rdev)
|
|
|
|
|
|
ret &= WM831X_LDO7_ON_VSEL_MASK;
|
|
|
|
|
|
- return wm831x_aldo_list_voltage(rdev, ret);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
static unsigned int wm831x_aldo_get_mode(struct regulator_dev *rdev)
|
|
@@ -559,7 +559,7 @@ static int wm831x_aldo_get_status(struct regulator_dev *rdev)
|
|
|
|
|
|
static struct regulator_ops wm831x_aldo_ops = {
|
|
|
.list_voltage = wm831x_aldo_list_voltage,
|
|
|
- .get_voltage = wm831x_aldo_get_voltage,
|
|
|
+ .get_voltage_sel = wm831x_aldo_get_voltage_sel,
|
|
|
.set_voltage = wm831x_aldo_set_voltage,
|
|
|
.set_suspend_voltage = wm831x_aldo_set_suspend_voltage,
|
|
|
.get_mode = wm831x_aldo_get_mode,
|
|
@@ -718,7 +718,7 @@ static int wm831x_alive_ldo_set_suspend_voltage(struct regulator_dev *rdev,
|
|
|
return wm831x_alive_ldo_set_voltage_int(rdev, reg, uV, uV, &selector);
|
|
|
}
|
|
|
|
|
|
-static int wm831x_alive_ldo_get_voltage(struct regulator_dev *rdev)
|
|
|
+static int wm831x_alive_ldo_get_voltage_sel(struct regulator_dev *rdev)
|
|
|
{
|
|
|
struct wm831x_ldo *ldo = rdev_get_drvdata(rdev);
|
|
|
struct wm831x *wm831x = ldo->wm831x;
|
|
@@ -731,7 +731,7 @@ static int wm831x_alive_ldo_get_voltage(struct regulator_dev *rdev)
|
|
|
|
|
|
ret &= WM831X_LDO11_ON_VSEL_MASK;
|
|
|
|
|
|
- return wm831x_alive_ldo_list_voltage(rdev, ret);
|
|
|
+ return ret;
|
|
|
}
|
|
|
|
|
|
static int wm831x_alive_ldo_get_status(struct regulator_dev *rdev)
|
|
@@ -753,7 +753,7 @@ static int wm831x_alive_ldo_get_status(struct regulator_dev *rdev)
|
|
|
|
|
|
static struct regulator_ops wm831x_alive_ldo_ops = {
|
|
|
.list_voltage = wm831x_alive_ldo_list_voltage,
|
|
|
- .get_voltage = wm831x_alive_ldo_get_voltage,
|
|
|
+ .get_voltage_sel = wm831x_alive_ldo_get_voltage_sel,
|
|
|
.set_voltage = wm831x_alive_ldo_set_voltage,
|
|
|
.set_suspend_voltage = wm831x_alive_ldo_set_suspend_voltage,
|
|
|
.get_status = wm831x_alive_ldo_get_status,
|