diff options
Diffstat (limited to 'drivers/hwmon/adm1031.c')
| -rw-r--r-- | drivers/hwmon/adm1031.c | 10 | 
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/hwmon/adm1031.c b/drivers/hwmon/adm1031.c index 253ea396106..51c1a5a165a 100644 --- a/drivers/hwmon/adm1031.c +++ b/drivers/hwmon/adm1031.c @@ -4,7 +4,7 @@   * Based on lm75.c and lm85.c   * Supports adm1030 / adm1031   * Copyright (C) 2004 Alexandre d'Alton <alex@alexdalton.org> - * Reworked by Jean Delvare <khali@linux-fr.org> + * Reworked by Jean Delvare <jdelvare@suse.de>   *   * This program is free software; you can redistribute it and/or modify   * it under the terms of the GNU General Public License as published by @@ -365,6 +365,7 @@ set_auto_temp_min(struct device *dev, struct device_attribute *attr,  	if (ret)  		return ret; +	val = clamp_val(val, 0, 127000);  	mutex_lock(&data->update_lock);  	data->auto_temp[nr] = AUTO_TEMP_MIN_TO_REG(val, data->auto_temp[nr]);  	adm1031_write_value(client, ADM1031_REG_AUTO_TEMP(nr), @@ -394,6 +395,7 @@ set_auto_temp_max(struct device *dev, struct device_attribute *attr,  	if (ret)  		return ret; +	val = clamp_val(val, 0, 127000);  	mutex_lock(&data->update_lock);  	data->temp_max[nr] = AUTO_TEMP_MAX_TO_REG(val, data->auto_temp[nr],  						  data->pwm[nr]); @@ -696,7 +698,7 @@ static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,  	if (ret)  		return ret; -	val = clamp_val(val, -55000, nr == 0 ? 127750 : 127875); +	val = clamp_val(val, -55000, 127000);  	mutex_lock(&data->update_lock);  	data->temp_min[nr] = TEMP_TO_REG(val);  	adm1031_write_value(client, ADM1031_REG_TEMP_MIN(nr), @@ -717,7 +719,7 @@ static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,  	if (ret)  		return ret; -	val = clamp_val(val, -55000, nr == 0 ? 127750 : 127875); +	val = clamp_val(val, -55000, 127000);  	mutex_lock(&data->update_lock);  	data->temp_max[nr] = TEMP_TO_REG(val);  	adm1031_write_value(client, ADM1031_REG_TEMP_MAX(nr), @@ -738,7 +740,7 @@ static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr,  	if (ret)  		return ret; -	val = clamp_val(val, -55000, nr == 0 ? 127750 : 127875); +	val = clamp_val(val, -55000, 127000);  	mutex_lock(&data->update_lock);  	data->temp_crit[nr] = TEMP_TO_REG(val);  	adm1031_write_value(client, ADM1031_REG_TEMP_CRIT(nr),  | 
