diff options
author | Cristina Opriceana <cristina.opriceana@gmail.com> | 2015-08-03 13:00:47 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2015-09-21 10:02:15 -0700 |
commit | 552c1d613e5be53f577f3a31f335598bf662d943 (patch) | |
tree | b0be11aa905e3b71a0f4a503f87e0993039d9b2b /drivers/iio | |
parent | 279c039ca63acbd69e69d6d7ddfed50346fb2185 (diff) | |
download | lwn-552c1d613e5be53f577f3a31f335598bf662d943.tar.gz lwn-552c1d613e5be53f577f3a31f335598bf662d943.zip |
iio: event: Remove negative error code from iio_event_poll
commit 41d903c00051d8f31c98a8136edbac67e6f8688f upstream.
Negative return values are not supported by iio_event_poll since
its return type is unsigned int.
Fixes: f18e7a068a0a3 ("iio: Return -ENODEV for file operations if the device has been unregistered")
Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/iio')
-rw-r--r-- | drivers/iio/industrialio-event.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/industrialio-event.c b/drivers/iio/industrialio-event.c index f9360f497ed4..05b59941c400 100644 --- a/drivers/iio/industrialio-event.c +++ b/drivers/iio/industrialio-event.c @@ -83,7 +83,7 @@ static unsigned int iio_event_poll(struct file *filep, unsigned int events = 0; if (!indio_dev->info) - return -ENODEV; + return events; poll_wait(filep, &ev_int->wait, wait); |