The usage of strict_strtoul() is not preferred. Thus, kstrtoul
should be used.
Signed-off-by: Jingoo Han <jg1.han@samsung.com>
Cc: Michael Hennerich <michael.hennerich@analog.com>
Cc: Richard Purdie <rpurdie@rpsys.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
        unsigned long val;
        int ret;
 
-       ret = strict_strtoul(buf, 10, &val);
+       ret = kstrtoul(buf, 10, &val);
        if (ret)
                return ret;
 
        struct adp5520_bl *data = dev_get_drvdata(dev);
        int ret;
 
-       ret = strict_strtoul(buf, 10, &data->cached_daylight_max);
+       ret = kstrtoul(buf, 10, &data->cached_daylight_max);
        if (ret < 0)
                return ret;