]> Pileus Git - ~andy/linux/blobdiff - drivers/hwmon/applesmc.c
hwmon: (lm63) Add support for LM96163
[~andy/linux] / drivers / hwmon / applesmc.c
index 4c0743660e9c7684c12184b9824c94ffe655f4eb..b9895531240d3a04cff17d967286527985936017 100644 (file)
@@ -782,7 +782,7 @@ static ssize_t applesmc_store_fan_speed(struct device *dev,
        char newkey[5];
        u8 buffer[2];
 
-       if (strict_strtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
+       if (kstrtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
                return -EINVAL;         /* Bigger than a 14-bit value */
 
        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,
        unsigned long input;
        u16 val;
 
-       if (strict_strtoul(sysfsbuf, 10, &input) < 0)
+       if (kstrtoul(sysfsbuf, 10, &input) < 0)
                return -EINVAL;
 
        ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
@@ -977,7 +977,7 @@ static ssize_t applesmc_key_at_index_store(struct device *dev,
 {
        unsigned long newkey;
 
-       if (strict_strtoul(sysfsbuf, 10, &newkey) < 0
+       if (kstrtoul(sysfsbuf, 10, &newkey) < 0
            || newkey >= smcreg.key_count)
                return -EINVAL;