Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 463bf503 authored by Radhesh Fadnis's avatar Radhesh Fadnis Committed by Greg Kroah-Hartman
Browse files

staging: omap-thermal: bandgap: fix setting of alert thresholds



There was an error in check for the valid temperature in
function temp_to_adc_conversion. The temperature value was
compared with higher limit for less than condition as well,
resulting in returning -EINVAL. Corrected the check condition
to properly check for lower and higher temperature limits.

Signed-off-by: default avatarRadhesh Fadnis <radhesh.fadnis@ti.com>
Signed-off-by: default avatarEduardo Valentin <eduardo.valentin@ti.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent cbf7d122
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -157,7 +157,7 @@ static int temp_to_adc_conversion(long temp, struct omap_bandgap *bg_ptr, int i,
	high = ts_data->adc_end_val - ts_data->adc_start_val;
	high = ts_data->adc_end_val - ts_data->adc_start_val;
	mid = (high + low) / 2;
	mid = (high + low) / 2;


	if (temp < bg_ptr->conv_table[high] || temp > bg_ptr->conv_table[high])
	if (temp < bg_ptr->conv_table[low] || temp > bg_ptr->conv_table[high])
		return -EINVAL;
		return -EINVAL;


	while (low < high) {
	while (low < high) {