From: Jingoo Han Date: Mon, 19 Nov 2012 04:51:47 +0000 (-0800) Subject: leds: leds-lp5523: replace strict_strtoul() with kstrtoul() X-Git-Tag: upstream/snapshot3+hdmi~6054^2~22 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=eef4aa652c40237f73258d5418b03d60a2ffec40;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git leds: leds-lp5523: replace strict_strtoul() with kstrtoul() The usage of strict_strtoul() is not preferred, because strict_strtoul() is obsolete. Thus, kstrtoul() should be used. Signed-off-by: Jingoo Han Signed-off-by: Bryan Wu --- diff --git a/drivers/leds/leds-lp5523.c b/drivers/leds/leds-lp5523.c index 4ddf7b4..59ec383 100644 --- a/drivers/leds/leds-lp5523.c +++ b/drivers/leds/leds-lp5523.c @@ -710,7 +710,7 @@ static ssize_t store_current(struct device *dev, ssize_t ret; unsigned long curr; - if (strict_strtoul(buf, 0, &curr)) + if (kstrtoul(buf, 0, &curr)) return -EINVAL; if (curr > led->max_current)