commit b080c78a4e447e9c212c207f725999d4e32c5f19
"regulator: ab8500: Update voltage handling for fixed voltage regulators"
remove min_uV settings and set volt_table for all fixed voltage, thus we can not
use regulator_list_voltage_linear now. Use regulator_list_voltage_table instead.

Signed-off-by: Axel Lin <axel....@ingics.com>
---
 drivers/regulator/ab8500.c |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/regulator/ab8500.c b/drivers/regulator/ab8500.c
index 09eea32..5fd764e 100644
--- a/drivers/regulator/ab8500.c
+++ b/drivers/regulator/ab8500.c
@@ -423,14 +423,14 @@ static struct regulator_ops ab8500_regulator_mode_ops = {
        .get_optimum_mode       = ab8500_regulator_get_optimum_mode,
        .set_mode               = ab8500_regulator_set_mode,
        .get_mode               = ab8500_regulator_get_mode,
-       .list_voltage           = regulator_list_voltage_linear,
+       .list_voltage           = regulator_list_voltage_table,
 };
 
 static struct regulator_ops ab8500_regulator_ops = {
        .enable                 = ab8500_regulator_enable,
        .disable                = ab8500_regulator_disable,
        .is_enabled             = ab8500_regulator_is_enabled,
-       .list_voltage           = regulator_list_voltage_linear,
+       .list_voltage           = regulator_list_voltage_table,
 };
 
 /* AB8500 regulator information */
-- 
1.7.10.4



--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Reply via email to