Home
last modified time | relevance | path

Searched refs:best_val (Results 1 – 5 of 5) sorted by relevance

/drivers/regulator/
Dgpio-regulator.c62 int ptr, target = 0, state, best_val = INT_MAX; in gpio_regulator_set_voltage() local
65 if (data->states[ptr].value < best_val && in gpio_regulator_set_voltage()
69 best_val = data->states[ptr].value; in gpio_regulator_set_voltage()
74 if (best_val == INT_MAX) in gpio_regulator_set_voltage()
101 int ptr, target = 0, state, best_val = 0; in gpio_regulator_set_current_limit() local
104 if (data->states[ptr].value > best_val && in gpio_regulator_set_current_limit()
108 best_val = data->states[ptr].value; in gpio_regulator_set_current_limit()
111 if (best_val == 0) in gpio_regulator_set_current_limit()
Dhelpers.c291 int best_val = INT_MAX; in regulator_map_voltage_iterate() local
303 if (ret < best_val && ret >= min_uV && ret <= max_uV) { in regulator_map_voltage_iterate()
304 best_val = ret; in regulator_map_voltage_iterate()
309 if (best_val != INT_MAX) in regulator_map_voltage_iterate()
Dcore.c3210 int best_val = 0; in _regulator_do_set_voltage() local
3238 best_val = ops->list_voltage(rdev, in _regulator_do_set_voltage()
3241 best_val = regulator_get_voltage_rdev(rdev); in _regulator_do_set_voltage()
3247 best_val = ops->list_voltage(rdev, ret); in _regulator_do_set_voltage()
3248 if (min_uV <= best_val && max_uV >= best_val) { in _regulator_do_set_voltage()
3254 rdev, best_val, selector); in _regulator_do_set_voltage()
3257 rdev, best_val, selector); in _regulator_do_set_voltage()
3278 if (old_uV != best_val) { in _regulator_do_set_voltage()
3281 best_val); in _regulator_do_set_voltage()
3285 best_val); in _regulator_do_set_voltage()
[all …]
/drivers/net/ethernet/qlogic/qed/
Dqed_ptp.c280 s64 best_val = 0, val, best_period = 0, period, approx_dev, dif, dif2; in qed_ptp_hw_adjfreq() local
326 best_val = val; in qed_ptp_hw_adjfreq()
336 best_val = 4; in qed_ptp_hw_adjfreq()
339 best_val = 0; in qed_ptp_hw_adjfreq()
344 (((int)best_val) << QED_DRIFT_CNTR_ADJUSTMENT_SHIFT) | in qed_ptp_hw_adjfreq()
/drivers/net/ethernet/broadcom/bnx2x/
Dbnx2x_main.c13764 int best_val, int best_period) in bnx2x_send_update_drift_ramrod() argument
13782 set_timesync_params->drift_adjust_value = best_val; in bnx2x_send_update_drift_ramrod()
13794 int best_dif = BNX2X_MAX_PHC_DRIFT, best_period = 0, best_val = 0; in bnx2x_ptp_adjfreq() local
13810 best_val = 1; in bnx2x_ptp_adjfreq()
13813 best_val = 31; in bnx2x_ptp_adjfreq()
13837 best_val = val; in bnx2x_ptp_adjfreq()
13843 rc = bnx2x_send_update_drift_ramrod(bp, drift_dir, best_val, in bnx2x_ptp_adjfreq()
13850 DP(BNX2X_MSG_PTP, "Configured val = %d, period = %d\n", best_val, in bnx2x_ptp_adjfreq()