Lines Matching full:max_uv
288 * @max_uV: Upper bound for voltage
296 int min_uV, int max_uV) in regulator_map_voltage_iterate() argument
310 if (ret < best_val && ret >= min_uV && ret <= max_uV) { in regulator_map_voltage_iterate()
328 * @max_uV: Upper bound for voltage
334 int min_uV, int max_uV) in regulator_map_voltage_ascend() argument
343 if (ret > max_uV) in regulator_map_voltage_ascend()
346 if (ret >= min_uV && ret <= max_uV) in regulator_map_voltage_ascend()
359 * @max_uV: Upper bound for voltage
365 int min_uV, int max_uV) in regulator_map_voltage_linear() argument
371 if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV) in regulator_map_voltage_linear()
393 if (voltage < min_uV || voltage > max_uV) in regulator_map_voltage_linear()
405 * @max_uV: Upper bound for voltage
411 int min_uV, int max_uV) in regulator_map_voltage_linear_range() argument
438 if (voltage >= min_uV && voltage <= max_uV) in regulator_map_voltage_linear_range()
454 * @max_uV: Upper bound for voltage
460 int min_uV, int max_uV) in regulator_map_voltage_pickable_linear_range() argument
480 if (!(min_uV <= linear_max_uV && max_uV >= range->min)) { in regulator_map_voltage_pickable_linear_range()
501 if (voltage < min_uV || voltage > max_uV) in regulator_map_voltage_pickable_linear_range()