iio: replace strict_strtoul() with kstrtoul()
authorJingoo Han <jg1.han@samsung.com>
Sat, 1 Jun 2013 07:10:00 +0000 (08:10 +0100)
committerJonathan Cameron <jic23@kernel.org>
Tue, 4 Jun 2013 17:29:49 +0000 (18:29 +0100)
The usage of strict_strtoul() is not preferred, because
strict_strtoul() is obsolete. Thus, kstrtoul() should be
used.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/adc/max1363.c
drivers/iio/trigger/iio-trig-sysfs.c

index 9e6da72..f148d00 100644 (file)
@@ -660,7 +660,7 @@ static ssize_t max1363_monitor_store_freq(struct device *dev,
        unsigned long val;
        bool found = false;
 
-       ret = strict_strtoul(buf, 10, &val);
+       ret = kstrtoul(buf, 10, &val);
        if (ret)
                return -EINVAL;
        for (i = 0; i < ARRAY_SIZE(max1363_monitor_speeds); i++)
index b727bde..effcd0a 100644 (file)
@@ -34,7 +34,7 @@ static ssize_t iio_sysfs_trig_add(struct device *dev,
        int ret;
        unsigned long input;
 
-       ret = strict_strtoul(buf, 10, &input);
+       ret = kstrtoul(buf, 10, &input);
        if (ret)
                return ret;
        ret = iio_sysfs_trigger_probe(input);
@@ -53,7 +53,7 @@ static ssize_t iio_sysfs_trig_remove(struct device *dev,
        int ret;
        unsigned long input;
 
-       ret = strict_strtoul(buf, 10, &input);
+       ret = kstrtoul(buf, 10, &input);
        if (ret)
                return ret;
        ret = iio_sysfs_trigger_remove(input);