misc/ep93xx_pwm: use kstrtol instead of strict_strtol
authorH Hartley Sweeten <hartleys@visionengravers.com>
Fri, 24 May 2013 23:28:44 +0000 (16:28 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 30 May 2013 12:54:07 +0000 (21:54 +0900)
strict_strtol is deprecated in favor of kstrtol.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Reviewed-by: Ryan Mallon <rmallon@gmail.com>
Cc: Matthieu Crapet <mcrapet@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/misc/ep93xx_pwm.c

index b5ad0c6..cdb67a9 100644 (file)
@@ -92,7 +92,7 @@ static ssize_t ep93xx_pwm_set_freq(struct device *dev,
        long val;
        int err;
 
-       err = strict_strtol(buf, 10, &val);
+       err = kstrtol(buf, 10, &val);
        if (err)
                return -EINVAL;
 
@@ -145,7 +145,7 @@ static ssize_t ep93xx_pwm_set_duty_percent(struct device *dev,
        long val;
        int err;
 
-       err = strict_strtol(buf, 10, &val);
+       err = kstrtol(buf, 10, &val);
        if (err)
                return -EINVAL;
 
@@ -179,7 +179,7 @@ static ssize_t ep93xx_pwm_set_invert(struct device *dev,
        long val;
        int err;
 
-       err = strict_strtol(buf, 10, &val);
+       err = kstrtol(buf, 10, &val);
        if (err)
                return -EINVAL;