ide: replace strict_strtol() with kstrtol()
authorJingoo Han <jg1.han@samsung.com>
Fri, 19 Jul 2013 07:01:26 +0000 (16:01 +0900)
committerDavid S. Miller <davem@davemloft.net>
Thu, 5 Sep 2013 19:21:29 +0000 (15:21 -0400)
The usage of strict_strtol() is not preferred, because
strict_strtol() is obsolete. Thus, kstrtol() should be
used.

Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/ide/ide-park.c

index 6ab9ab2..f41558a 100644 (file)
@@ -116,8 +116,10 @@ ssize_t ide_park_store(struct device *dev, struct device_attribute *attr,
        long int input;
        int rc;
 
-       rc = strict_strtol(buf, 10, &input);
-       if (rc || input < -2)
+       rc = kstrtol(buf, 10, &input);
+       if (rc)
+               return rc;
+       if (input < -2)
                return -EINVAL;
        if (input > MAX_PARK_TIMEOUT) {
                input = MAX_PARK_TIMEOUT;