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/w83791d.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/w83791d.c')
-rw-r--r-- | drivers/hwmon/w83791d.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/hwmon/w83791d.c b/drivers/hwmon/w83791d.c index 8c2844e5691c..6e5d0ae594b0 100644 --- a/drivers/hwmon/w83791d.c +++ b/drivers/hwmon/w83791d.c | |||
@@ -711,7 +711,7 @@ static ssize_t store_pwm(struct device *dev, struct device_attribute *attr, | |||
711 | int nr = sensor_attr->index; | 711 | int nr = sensor_attr->index; |
712 | unsigned long val; | 712 | unsigned long val; |
713 | 713 | ||
714 | if (strict_strtoul(buf, 10, &val)) | 714 | if (kstrtoul(buf, 10, &val)) |
715 | return -EINVAL; | 715 | return -EINVAL; |
716 | 716 | ||
717 | mutex_lock(&data->update_lock); | 717 | mutex_lock(&data->update_lock); |
@@ -756,7 +756,7 @@ static ssize_t store_pwmenable(struct device *dev, | |||
756 | u8 val_shift = 0; | 756 | u8 val_shift = 0; |
757 | u8 keep_mask = 0; | 757 | u8 keep_mask = 0; |
758 | 758 | ||
759 | int ret = strict_strtoul(buf, 10, &val); | 759 | int ret = kstrtoul(buf, 10, &val); |
760 | 760 | ||
761 | if (ret || val < 1 || val > 3) | 761 | if (ret || val < 1 || val > 3) |
762 | return -EINVAL; | 762 | return -EINVAL; |
@@ -819,7 +819,7 @@ static ssize_t store_temp_target(struct device *dev, | |||
819 | unsigned long val; | 819 | unsigned long val; |
820 | u8 target_mask; | 820 | u8 target_mask; |
821 | 821 | ||
822 | if (strict_strtoul(buf, 10, &val)) | 822 | if (kstrtoul(buf, 10, &val)) |
823 | return -EINVAL; | 823 | return -EINVAL; |
824 | 824 | ||
825 | mutex_lock(&data->update_lock); | 825 | mutex_lock(&data->update_lock); |
@@ -863,7 +863,7 @@ static ssize_t store_temp_tolerance(struct device *dev, | |||
863 | u8 val_shift = 0; | 863 | u8 val_shift = 0; |
864 | u8 keep_mask = 0; | 864 | u8 keep_mask = 0; |
865 | 865 | ||
866 | if (strict_strtoul(buf, 10, &val)) | 866 | if (kstrtoul(buf, 10, &val)) |
867 | return -EINVAL; | 867 | return -EINVAL; |
868 | 868 | ||
869 | switch (nr) { | 869 | switch (nr) { |