aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/leds
diff options
context:
space:
mode:
authorJingoo Han <jg1.han@samsung.com>2012-10-23 08:23:33 -0400
committerBryan Wu <cooloney@gmail.com>2012-11-26 17:28:47 -0500
commitfd80fc762c58411d5e64836dd778052df0f99d4e (patch)
tree0def68053fb76ea422b000eb87c1215ec5d4aee4 /drivers/leds
parentf9e007fffd44ba508c0b9c62c8126eb350bcff1e (diff)
leds: leds-bd2802: 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')
-rw-r--r--drivers/leds/leds-bd2802.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/leds/leds-bd2802.c b/drivers/leds/leds-bd2802.c
index 89ca6a2a19d1..ebdfe295d835 100644
--- a/drivers/leds/leds-bd2802.c
+++ b/drivers/leds/leds-bd2802.c
@@ -328,7 +328,7 @@ static ssize_t bd2802_store_reg##reg_addr(struct device *dev, \
328 int ret; \ 328 int ret; \
329 if (!count) \ 329 if (!count) \
330 return -EINVAL; \ 330 return -EINVAL; \
331 ret = strict_strtoul(buf, 16, &val); \ 331 ret = kstrtoul(buf, 16, &val); \
332 if (ret) \ 332 if (ret) \
333 return ret; \ 333 return ret; \
334 down_write(&led->rwsem); \ 334 down_write(&led->rwsem); \
@@ -492,7 +492,7 @@ static ssize_t bd2802_store_##attr_name(struct device *dev, \
492 int ret; \ 492 int ret; \
493 if (!count) \ 493 if (!count) \
494 return -EINVAL; \ 494 return -EINVAL; \
495 ret = strict_strtoul(buf, 16, &val); \ 495 ret = kstrtoul(buf, 16, &val); \
496 if (ret) \ 496 if (ret) \
497 return ret; \ 497 return ret; \
498 down_write(&led->rwsem); \ 498 down_write(&led->rwsem); \