diff options
| author | Axel Lin <[email protected]> | 2021-06-10 21:41:28 +0800 |
|---|---|---|
| committer | Mark Brown <[email protected]> | 2021-06-14 15:04:59 +0100 |
| commit | 00430f71b2b18e42ba3d733cbd2d725ec5b2ca80 (patch) | |
| tree | f48eda1e97e96ac6a848c4f2f53dc25ba87ff8d2 | |
| parent | 23f95199b6446f828bf879ca316f388893435faa (diff) | |
regulator: hi6421v600: Use regulator_map_voltage_ascend
All the voltage tables have entries in ascendant order, so use
regulator_map_voltage_ascend to speed up the mapping.
Signed-off-by: Axel Lin <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Mark Brown <[email protected]>
| -rw-r--r-- | drivers/regulator/hi6421v600-regulator.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/regulator/hi6421v600-regulator.c b/drivers/regulator/hi6421v600-regulator.c index feddb0b5d4f1..417cf5b4a1c3 100644 --- a/drivers/regulator/hi6421v600-regulator.c +++ b/drivers/regulator/hi6421v600-regulator.c @@ -166,7 +166,7 @@ static const struct regulator_ops hi6421_spmi_ldo_rops = { .enable = hi6421_spmi_regulator_enable, .disable = regulator_disable_regmap, .list_voltage = regulator_list_voltage_table, - .map_voltage = regulator_map_voltage_iterate, + .map_voltage = regulator_map_voltage_ascend, .get_voltage_sel = regulator_get_voltage_sel_regmap, .set_voltage_sel = regulator_set_voltage_sel_regmap, .get_mode = hi6421_spmi_regulator_get_mode, |