Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 247508
b: refs/heads/master
c: f7c7c7e
h: refs/heads/master
v: v3
  • Loading branch information
Luciano Coelho committed May 2, 2011
1 parent 783905e commit ecf4861
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: 86c438f40cf3e0f6ce2da80f2d759e61d3e85ad7
refs/heads/master: f7c7c7e69cbc3c5b660a32cc2cb31720b2b420c8
4 changes: 2 additions & 2 deletions trunk/drivers/net/wireless/wl12xx/debugfs.c
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,7 @@ static ssize_t dtim_interval_write(struct file *file,
return -EFAULT;
buf[len] = '\0';

ret = strict_strtoul(buf, 0, &value);
ret = kstrtoul(buf, 0, &value);
if (ret < 0) {
wl1271_warning("illegal value for dtim_interval");
return -EINVAL;
Expand Down Expand Up @@ -386,7 +386,7 @@ static ssize_t beacon_interval_write(struct file *file,
return -EFAULT;
buf[len] = '\0';

ret = strict_strtoul(buf, 0, &value);
ret = kstrtoul(buf, 0, &value);
if (ret < 0) {
wl1271_warning("illegal value for beacon_interval");
return -EINVAL;
Expand Down

0 comments on commit ecf4861

Please sign in to comment.