Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 344461
b: refs/heads/master
c: fd80fc7
h: refs/heads/master
i:
  344459: 15afc5a
v: v3
  • Loading branch information
Jingoo Han authored and Bryan Wu committed Nov 26, 2012
1 parent d3103ae commit 43b36be
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: f9e007fffd44ba508c0b9c62c8126eb350bcff1e
refs/heads/master: fd80fc762c58411d5e64836dd778052df0f99d4e
4 changes: 2 additions & 2 deletions trunk/drivers/leds/leds-bd2802.c
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ static ssize_t bd2802_store_reg##reg_addr(struct device *dev, \
int ret; \
if (!count) \
return -EINVAL; \
ret = strict_strtoul(buf, 16, &val); \
ret = kstrtoul(buf, 16, &val); \
if (ret) \
return ret; \
down_write(&led->rwsem); \
Expand Down Expand Up @@ -492,7 +492,7 @@ static ssize_t bd2802_store_##attr_name(struct device *dev, \
int ret; \
if (!count) \
return -EINVAL; \
ret = strict_strtoul(buf, 16, &val); \
ret = kstrtoul(buf, 16, &val); \
if (ret) \
return ret; \
down_write(&led->rwsem); \
Expand Down

0 comments on commit 43b36be

Please sign in to comment.