diff options
Diffstat (limited to 'drivers/iio/industrialio-event.c')
-rw-r--r-- | drivers/iio/industrialio-event.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/iio/industrialio-event.c b/drivers/iio/industrialio-event.c index fa6543bf6731..857e6306c5c3 100644 --- a/drivers/iio/industrialio-event.c +++ b/drivers/iio/industrialio-event.c | |||
@@ -239,13 +239,13 @@ static ssize_t iio_ev_value_store(struct device *dev, | |||
239 | { | 239 | { |
240 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); | 240 | struct iio_dev *indio_dev = dev_to_iio_dev(dev); |
241 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); | 241 | struct iio_dev_attr *this_attr = to_iio_dev_attr(attr); |
242 | unsigned long val; | 242 | int val; |
243 | int ret; | 243 | int ret; |
244 | 244 | ||
245 | if (!indio_dev->info->write_event_value) | 245 | if (!indio_dev->info->write_event_value) |
246 | return -EINVAL; | 246 | return -EINVAL; |
247 | 247 | ||
248 | ret = strict_strtoul(buf, 10, &val); | 248 | ret = kstrtoint(buf, 10, &val); |
249 | if (ret) | 249 | if (ret) |
250 | return ret; | 250 | return ret; |
251 | 251 | ||