From: Jingoo Han Date: Mon, 19 Nov 2012 04:51:47 +0000 (-0800) Subject: leds: leds-lp5523: replace strict_strtoul() with kstrtoul() X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=eef4aa652c40237f73258d5418b03d60a2ffec40;p=deliverable%2Flinux.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 4ddf7b445a83..59ec383900de 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)