|
@@ -444,7 +444,7 @@ static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
unsigned long val;
|
|
|
|
|
|
- if (strict_strtoul(buf, 10, &val) < 0)
|
|
|
+ if (kstrtoul(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -463,7 +463,7 @@ static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
unsigned long val;
|
|
|
|
|
|
- if (strict_strtoul(buf, 10, &val) < 0)
|
|
|
+ if (kstrtoul(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -539,7 +539,7 @@ static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -557,7 +557,7 @@ static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -604,7 +604,7 @@ static ssize_t set_sensor(struct device *dev, struct device_attribute *attr,
|
|
|
long val;
|
|
|
u8 reg;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
reg = it87_read_value(data, IT87_REG_TEMP_ENABLE);
|
|
@@ -718,7 +718,7 @@ static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
|
|
|
long val;
|
|
|
u8 reg;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -751,7 +751,7 @@ static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
|
|
|
int min;
|
|
|
u8 old;
|
|
|
|
|
|
- if (strict_strtoul(buf, 10, &val) < 0)
|
|
|
+ if (kstrtoul(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -820,7 +820,7 @@ static ssize_t set_pwm_enable(struct device *dev,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 2)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 2)
|
|
|
return -EINVAL;
|
|
|
|
|
|
/* Check trip points before switching to automatic mode */
|
|
@@ -866,7 +866,7 @@ static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -900,7 +900,7 @@ static ssize_t set_pwm_freq(struct device *dev,
|
|
|
unsigned long val;
|
|
|
int i;
|
|
|
|
|
|
- if (strict_strtoul(buf, 10, &val) < 0)
|
|
|
+ if (kstrtoul(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
/* Search for the nearest available frequency */
|
|
@@ -949,7 +949,7 @@ static ssize_t set_pwm_temp_map(struct device *dev,
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
switch (val) {
|
|
@@ -1001,7 +1001,7 @@ static ssize_t set_auto_pwm(struct device *dev,
|
|
|
int point = sensor_attr->index;
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0 || val < 0 || val > 255)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0 || val < 0 || val > 255)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -1034,7 +1034,7 @@ static ssize_t set_auto_temp(struct device *dev,
|
|
|
int point = sensor_attr->index;
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0 || val < -128000 || val > 127000)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -1126,7 +1126,7 @@ static ssize_t set_fan16_min(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -1180,7 +1180,7 @@ static ssize_t clear_intrusion(struct device *dev, struct device_attribute
|
|
|
long val;
|
|
|
int config;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0 || val != 0)
|
|
|
+ if (kstrtol(buf, 10, &val) < 0 || val != 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
mutex_lock(&data->update_lock);
|
|
@@ -1231,7 +1231,7 @@ static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
long val;
|
|
|
|
|
|
- if (strict_strtol(buf, 10, &val) < 0
|
|
|
+ if (kstrtol(buf, 10, &val) < 0
|
|
|
|| (val != 0 && val != 1))
|
|
|
return -EINVAL;
|
|
|
|
|
@@ -1278,7 +1278,7 @@ static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
|
|
|
struct it87_data *data = dev_get_drvdata(dev);
|
|
|
unsigned long val;
|
|
|
|
|
|
- if (strict_strtoul(buf, 10, &val) < 0)
|
|
|
+ if (kstrtoul(buf, 10, &val) < 0)
|
|
|
return -EINVAL;
|
|
|
|
|
|
data->vrm = val;
|