aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--drivers/regulator/gpio-regulator.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/regulator/gpio-regulator.c b/drivers/regulator/gpio-regulator.c
index 42e1cb1835e5..5f9b6add5d1d 100644
--- a/drivers/regulator/gpio-regulator.c
+++ b/drivers/regulator/gpio-regulator.c
@@ -105,15 +105,15 @@ static int gpio_regulator_set_value(struct regulator_dev *dev,
105 int min, int max) 105 int min, int max)
106{ 106{
107 struct gpio_regulator_data *data = rdev_get_drvdata(dev); 107 struct gpio_regulator_data *data = rdev_get_drvdata(dev);
108 int ptr, target, state; 108 int ptr, target, state, best_val = INT_MAX;
109 109
110 target = -1;
111 for (ptr = 0; ptr < data->nr_states; ptr++) 110 for (ptr = 0; ptr < data->nr_states; ptr++)
112 if (data->states[ptr].value >= min && 111 if (data->states[ptr].value < best_val &&
112 data->states[ptr].value >= min &&
113 data->states[ptr].value <= max) 113 data->states[ptr].value <= max)
114 target = data->states[ptr].gpios; 114 target = data->states[ptr].gpios;
115 115
116 if (target < 0) 116 if (best_val == INT_MAX)
117 return -EINVAL; 117 return -EINVAL;
118 118
119 for (ptr = 0; ptr < data->nr_gpios; ptr++) { 119 for (ptr = 0; ptr < data->nr_gpios; ptr++) {