Commit 459cba07 authored by Cristina Opriceana's avatar Cristina Opriceana Committed by Kamal Mostafa

iio: industrialio-buffer: Fix iio_buffer_poll return value

commit 1bdc0293 upstream.

Change return value to 0 if no device is bound since
unsigned int cannot support negative error codes.

Fixes: f18e7a06 ("iio: Return -ENODEV for file operations if the
device has been unregistered")
Signed-off-by: default avatarCristina Opriceana <cristina.opriceana@gmail.com>
Signed-off-by: default avatarJonathan Cameron <jic23@kernel.org>
Signed-off-by: default avatarKamal Mostafa <kamal@canonical.com>
parent c42d2398
...@@ -67,7 +67,7 @@ unsigned int iio_buffer_poll(struct file *filp, ...@@ -67,7 +67,7 @@ unsigned int iio_buffer_poll(struct file *filp,
struct iio_buffer *rb = indio_dev->buffer; struct iio_buffer *rb = indio_dev->buffer;
if (!indio_dev->info) if (!indio_dev->info)
return -ENODEV; return 0;
poll_wait(filp, &rb->pollq, wait); poll_wait(filp, &rb->pollq, wait);
if (rb->stufftoread) if (rb->stufftoread)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment