diff options
author | Frans Meulenbroeks <fransmeulenbroeks@gmail.com> | 2012-01-04 14:58:52 -0500 |
---|---|---|
committer | Guenter Roeck <guenter.roeck@ericsson.com> | 2012-01-05 11:19:34 -0500 |
commit | 179c4fdb565dd2157e5dfe89318b74868e3b523d (patch) | |
tree | 66c8b705260562df090a5061af2be9c80b71cd4b /drivers/hwmon/lm95245.c | |
parent | 24edc0a71badc13a9574b060e6a22e78339ac7a4 (diff) |
hwmon: replaced strict_str* with kstr*
replaced strict_strtol with kstrtol and
replaced strict_strtuol with kstrtuol
This satisfies checkpatch -f
Compile tested only: no warnings or errors given
Signed-off-by: Frans Meulenbroeks <fransmeulenbroeks@gmail.com>
Signed-off-by: Guenter Roeck <guenter.roeck@ericsson.com>
Diffstat (limited to 'drivers/hwmon/lm95245.c')
-rw-r--r-- | drivers/hwmon/lm95245.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hwmon/lm95245.c b/drivers/hwmon/lm95245.c index dce9e68241e6..5e5fc1b0ace1 100644 --- a/drivers/hwmon/lm95245.c +++ b/drivers/hwmon/lm95245.c | |||
@@ -254,7 +254,7 @@ static ssize_t set_limit(struct device *dev, struct device_attribute *attr, | |||
254 | int index = to_sensor_dev_attr(attr)->index; | 254 | int index = to_sensor_dev_attr(attr)->index; |
255 | unsigned long val; | 255 | unsigned long val; |
256 | 256 | ||
257 | if (strict_strtoul(buf, 10, &val) < 0) | 257 | if (kstrtoul(buf, 10, &val) < 0) |
258 | return -EINVAL; | 258 | return -EINVAL; |
259 | 259 | ||
260 | val /= 1000; | 260 | val /= 1000; |
@@ -279,7 +279,7 @@ static ssize_t set_crit_hyst(struct device *dev, struct device_attribute *attr, | |||
279 | struct lm95245_data *data = i2c_get_clientdata(client); | 279 | struct lm95245_data *data = i2c_get_clientdata(client); |
280 | unsigned long val; | 280 | unsigned long val; |
281 | 281 | ||
282 | if (strict_strtoul(buf, 10, &val) < 0) | 282 | if (kstrtoul(buf, 10, &val) < 0) |
283 | return -EINVAL; | 283 | return -EINVAL; |
284 | 284 | ||
285 | val /= 1000; | 285 | val /= 1000; |
@@ -316,7 +316,7 @@ static ssize_t set_type(struct device *dev, struct device_attribute *attr, | |||
316 | struct lm95245_data *data = i2c_get_clientdata(client); | 316 | struct lm95245_data *data = i2c_get_clientdata(client); |
317 | unsigned long val; | 317 | unsigned long val; |
318 | 318 | ||
319 | if (strict_strtoul(buf, 10, &val) < 0) | 319 | if (kstrtoul(buf, 10, &val) < 0) |
320 | return -EINVAL; | 320 | return -EINVAL; |
321 | if (val != 1 && val != 2) | 321 | if (val != 1 && val != 2) |
322 | return -EINVAL; | 322 | return -EINVAL; |
@@ -363,7 +363,7 @@ static ssize_t set_interval(struct device *dev, struct device_attribute *attr, | |||
363 | struct lm95245_data *data = i2c_get_clientdata(client); | 363 | struct lm95245_data *data = i2c_get_clientdata(client); |
364 | unsigned long val; | 364 | unsigned long val; |
365 | 365 | ||
366 | if (strict_strtoul(buf, 10, &val) < 0) | 366 | if (kstrtoul(buf, 10, &val) < 0) |
367 | return -EINVAL; | 367 | return -EINVAL; |
368 | 368 | ||
369 | mutex_lock(&data->update_lock); | 369 | mutex_lock(&data->update_lock); |