Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 281184
b: refs/heads/master
c: 6d3ff1c
h: refs/heads/master
v: v3
  • Loading branch information
Andreas Ruprecht authored and Greg Kroah-Hartman committed Nov 30, 2011
1 parent d4784d4 commit c8bf887
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: d83fb184945cd2daaafd33a702bba9cb7ed502bf
refs/heads/master: 6d3ff1cc99eb869af040e34c0bbe3035cc5c203b
4 changes: 2 additions & 2 deletions trunk/drivers/staging/iio/adc/ad7280a.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,10 +456,10 @@ static ssize_t ad7280_store_balance_timer(struct device *dev,
struct iio_dev *indio_dev = dev_get_drvdata(dev);
struct ad7280_state *st = iio_priv(indio_dev);
struct iio_dev_attr *this_attr = to_iio_dev_attr(attr);
long val;
unsigned long val;
int ret;

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

Expand Down

0 comments on commit c8bf887

Please sign in to comment.