Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 281317
b: refs/heads/master
c: 88e09a5
h: refs/heads/master
i:
  281315: 15a3f74
v: v3
  • Loading branch information
Valentin Rothberg authored and Greg Kroah-Hartman committed Dec 8, 2011
1 parent 15a0925 commit 06d9870
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 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: 463ac7f7fe319a30543d9722164ab31ebffbafb3
refs/heads/master: 88e09a5e30a2b768480ab52628043e7d30a0e079
6 changes: 3 additions & 3 deletions trunk/drivers/staging/olpc_dcon/olpc_dcon.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,7 +456,7 @@ static ssize_t dcon_mono_store(struct device *dev,
unsigned long enable_mono;
int rc;

rc = strict_strtoul(buf, 10, &enable_mono);
rc = kstrtoul(buf, 10, &enable_mono);
if (rc)
return rc;

Expand All @@ -472,7 +472,7 @@ static ssize_t dcon_freeze_store(struct device *dev,
unsigned long output;
int ret;

ret = strict_strtoul(buf, 10, &output);
ret = kstrtoul(buf, 10, &output);
if (ret)
return ret;

Expand Down Expand Up @@ -517,7 +517,7 @@ static ssize_t dcon_sleep_store(struct device *dev,
unsigned long output;
int ret;

ret = strict_strtoul(buf, 10, &output);
ret = kstrtoul(buf, 10, &output);
if (ret)
return ret;

Expand Down

0 comments on commit 06d9870

Please sign in to comment.