aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/tps65910-regulator.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/regulator/tps65910-regulator.c b/drivers/regulator/tps65910-regulator.c
index 6ba6931ac855..45c16447744b 100644
--- a/drivers/regulator/tps65910-regulator.c
+++ b/drivers/regulator/tps65910-regulator.c
@@ -748,6 +748,7 @@ static struct regulator_ops tps65910_ops_dcdc = {
748 .set_voltage_sel = tps65910_set_voltage_dcdc_sel, 748 .set_voltage_sel = tps65910_set_voltage_dcdc_sel,
749 .set_voltage_time_sel = regulator_set_voltage_time_sel, 749 .set_voltage_time_sel = regulator_set_voltage_time_sel,
750 .list_voltage = tps65910_list_voltage_dcdc, 750 .list_voltage = tps65910_list_voltage_dcdc,
751 .map_voltage = regulator_map_voltage_ascend,
751}; 752};
752 753
753static struct regulator_ops tps65910_ops_vdd3 = { 754static struct regulator_ops tps65910_ops_vdd3 = {
@@ -758,6 +759,7 @@ static struct regulator_ops tps65910_ops_vdd3 = {
758 .get_mode = tps65910_get_mode, 759 .get_mode = tps65910_get_mode,
759 .get_voltage = tps65910_get_voltage_vdd3, 760 .get_voltage = tps65910_get_voltage_vdd3,
760 .list_voltage = regulator_list_voltage_table, 761 .list_voltage = regulator_list_voltage_table,
762 .map_voltage = regulator_map_voltage_ascend,
761}; 763};
762 764
763static struct regulator_ops tps65910_ops = { 765static struct regulator_ops tps65910_ops = {
@@ -769,6 +771,7 @@ static struct regulator_ops tps65910_ops = {
769 .get_voltage_sel = tps65910_get_voltage_sel, 771 .get_voltage_sel = tps65910_get_voltage_sel,
770 .set_voltage_sel = tps65910_set_voltage_sel, 772 .set_voltage_sel = tps65910_set_voltage_sel,
771 .list_voltage = regulator_list_voltage_table, 773 .list_voltage = regulator_list_voltage_table,
774 .map_voltage = regulator_map_voltage_ascend,
772}; 775};
773 776
774static struct regulator_ops tps65911_ops = { 777static struct regulator_ops tps65911_ops = {
@@ -780,6 +783,7 @@ static struct regulator_ops tps65911_ops = {
780 .get_voltage_sel = tps65911_get_voltage_sel, 783 .get_voltage_sel = tps65911_get_voltage_sel,
781 .set_voltage_sel = tps65911_set_voltage_sel, 784 .set_voltage_sel = tps65911_set_voltage_sel,
782 .list_voltage = tps65911_list_voltage, 785 .list_voltage = tps65911_list_voltage,
786 .map_voltage = regulator_map_voltage_ascend,
783}; 787};
784 788
785static int tps65910_set_ext_sleep_config(struct tps65910_reg *pmic, 789static int tps65910_set_ext_sleep_config(struct tps65910_reg *pmic,