aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/hwmon/applesmc.c
diff options
context:
space:
mode:
authorFrans Meulenbroeks <fransmeulenbroeks@gmail.com>2012-01-04 14:58:52 -0500
committerGuenter Roeck <guenter.roeck@ericsson.com>2012-01-05 11:19:34 -0500
commit179c4fdb565dd2157e5dfe89318b74868e3b523d (patch)
tree66c8b705260562df090a5061af2be9c80b71cd4b /drivers/hwmon/applesmc.c
parent24edc0a71badc13a9574b060e6a22e78339ac7a4 (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/applesmc.c')
-rw-r--r--drivers/hwmon/applesmc.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/hwmon/applesmc.c b/drivers/hwmon/applesmc.c
index 4c0743660e9c..b9895531240d 100644
--- a/drivers/hwmon/applesmc.c
+++ b/drivers/hwmon/applesmc.c
@@ -782,7 +782,7 @@ static ssize_t applesmc_store_fan_speed(struct device *dev,
782 char newkey[5]; 782 char newkey[5];
783 u8 buffer[2]; 783 u8 buffer[2];
784 784
785 if (strict_strtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000) 785 if (kstrtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
786 return -EINVAL; /* Bigger than a 14-bit value */ 786 return -EINVAL; /* Bigger than a 14-bit value */
787 787
788 sprintf(newkey, fan_speed_fmt[to_option(attr)], to_index(attr)); 788 sprintf(newkey, fan_speed_fmt[to_option(attr)], to_index(attr));
@@ -822,7 +822,7 @@ static ssize_t applesmc_store_fan_manual(struct device *dev,
822 unsigned long input; 822 unsigned long input;
823 u16 val; 823 u16 val;
824 824
825 if (strict_strtoul(sysfsbuf, 10, &input) < 0) 825 if (kstrtoul(sysfsbuf, 10, &input) < 0)
826 return -EINVAL; 826 return -EINVAL;
827 827
828 ret = applesmc_read_key(FANS_MANUAL, buffer, 2); 828 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
@@ -977,7 +977,7 @@ static ssize_t applesmc_key_at_index_store(struct device *dev,
977{ 977{
978 unsigned long newkey; 978 unsigned long newkey;
979 979
980 if (strict_strtoul(sysfsbuf, 10, &newkey) < 0 980 if (kstrtoul(sysfsbuf, 10, &newkey) < 0
981 || newkey >= smcreg.key_count) 981 || newkey >= smcreg.key_count)
982 return -EINVAL; 982 return -EINVAL;
983 983