Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 99155
b: refs/heads/master
c: 73ead48
h: refs/heads/master
i:
  99153: 1ba107b
  99151: 119edab
v: v3
  • Loading branch information
Mark Brown authored and Jaroslav Kysela committed Jul 10, 2008
1 parent 36d5acc commit a908f1a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 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: 3f775987030cf7ff922765c18ddd0d311b4b46ef
refs/heads/master: 73ead4855d98e330f2840523e1648575b9f2aae9
6 changes: 5 additions & 1 deletion trunk/sound/soc/soc-dapm.c
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,11 @@ static ssize_t dapm_pop_time_store(struct device *dev,
const char *buf, size_t count)

{
if (strict_strtoul(buf, 10, &pop_time) < 0)
unsigned long val;

if (strict_strtoul(buf, 10, &val) >= 0)
pop_time = val;
else
printk(KERN_ERR "Unable to parse pop_time setting\n");

return count;
Expand Down

0 comments on commit a908f1a

Please sign in to comment.