Lines Matching full:max_uv
285 * @max_uV: Upper bound for voltage
293 int min_uV, int max_uV) in regulator_map_voltage_iterate() argument
307 if (ret < best_val && ret >= min_uV && ret <= max_uV) { in regulator_map_voltage_iterate()
325 * @max_uV: Upper bound for voltage
331 int min_uV, int max_uV) in regulator_map_voltage_ascend() argument
340 if (ret > max_uV) in regulator_map_voltage_ascend()
343 if (ret >= min_uV && ret <= max_uV) in regulator_map_voltage_ascend()
356 * @max_uV: Upper bound for voltage
362 int min_uV, int max_uV) in regulator_map_voltage_linear() argument
368 if (min_uV <= rdev->desc->min_uV && rdev->desc->min_uV <= max_uV) in regulator_map_voltage_linear()
390 if (voltage < min_uV || voltage > max_uV) in regulator_map_voltage_linear()
402 * @max_uV: Upper bound for voltage
408 int min_uV, int max_uV) in regulator_map_voltage_linear_range() argument
435 if (voltage >= min_uV && voltage <= max_uV) in regulator_map_voltage_linear_range()
451 * @max_uV: Upper bound for voltage
457 int min_uV, int max_uV) in regulator_map_voltage_pickable_linear_range() argument
477 if (!(min_uV <= linear_max_uV && max_uV >= range->min)) { in regulator_map_voltage_pickable_linear_range()
498 if (voltage < min_uV || voltage > max_uV) in regulator_map_voltage_pickable_linear_range()