diff options
author | Jingoo Han <jg1.han@samsung.com> | 2012-11-19 05:51:47 +0100 |
---|---|---|
committer | Bryan Wu <cooloney@gmail.com> | 2012-11-26 23:28:51 +0100 |
commit | eef4aa652c40237f73258d5418b03d60a2ffec40 (patch) | |
tree | 745bd36c0a67fd8d29e721b32866feb5caa1959c /drivers/leds/leds-lp5523.c | |
parent | leds: leds-lp5521: replace strict_strtoul() with kstrtoul() (diff) | |
download | linux-eef4aa652c40237f73258d5418b03d60a2ffec40.tar.xz linux-eef4aa652c40237f73258d5418b03d60a2ffec40.zip |
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 <jg1.han@samsung.com>
Signed-off-by: Bryan Wu <cooloney@gmail.com>
Diffstat (limited to 'drivers/leds/leds-lp5523.c')
-rw-r--r-- | drivers/leds/leds-lp5523.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |