From: Axel Lin Date: Mon, 24 Mar 2014 12:45:38 +0000 (+0800) Subject: regulator: aat2870: Use regulator_map_voltage_ascend X-Git-Tag: firefly_0821_release~176^2~4202^2~6^4 X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=08d6da291435f5de0f0fa283994a74f67d9ab23a;p=firefly-linux-kernel-4.4.55.git regulator: aat2870: Use regulator_map_voltage_ascend The voltages in aat2870_ldo_voltages table are in ascendant order, so use regulator_map_voltage_ascend. Signed-off-by: Axel Lin Signed-off-by: Mark Brown --- diff --git a/drivers/regulator/aat2870-regulator.c b/drivers/regulator/aat2870-regulator.c index f70a9bfa5ff2..c873ee0082cf 100644 --- a/drivers/regulator/aat2870-regulator.c +++ b/drivers/regulator/aat2870-regulator.c @@ -99,6 +99,7 @@ static int aat2870_ldo_is_enabled(struct regulator_dev *rdev) static struct regulator_ops aat2870_ldo_ops = { .list_voltage = regulator_list_voltage_table, + .map_voltage = regulator_map_voltage_ascend, .set_voltage_sel = aat2870_ldo_set_voltage_sel, .get_voltage_sel = aat2870_ldo_get_voltage_sel, .enable = aat2870_ldo_enable,