diff options
author | Cristina Opriceana <cristina.opriceana@gmail.com> | 2015-08-03 13:37:40 +0300 |
---|---|---|
committer | Sasha Levin <sasha.levin@oracle.com> | 2015-10-27 22:14:35 -0400 |
commit | fdb0c59ca71ae9133995bc6ba05fe4878237192c (patch) | |
tree | edb5a4ecc95dcc389c0e6c182f159994a5ed3ba1 /drivers | |
parent | 6bf6419ded2c771046e50230371ae2b098d9a7ed (diff) |
iio: industrialio-buffer: Fix iio_buffer_poll return value
[ Upstream commit 1bdc0293901cbea23c6dc29432e81919d4719844 ]
Change return value to 0 if no device is bound since
unsigned int cannot support negative error codes.
Fixes: f18e7a068 ("iio: Return -ENODEV for file operations if the
device has been unregistered")
Signed-off-by: Cristina Opriceana <cristina.opriceana@gmail.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/iio/industrialio-buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/iio/industrialio-buffer.c b/drivers/iio/industrialio-buffer.c index f971f79103ec..25c68de393ad 100644 --- a/drivers/iio/industrialio-buffer.c +++ b/drivers/iio/industrialio-buffer.c @@ -93,7 +93,7 @@ unsigned int iio_buffer_poll(struct file *filp, struct iio_buffer *rb = indio_dev->buffer; if (!indio_dev->info) - return -ENODEV; + return 0; poll_wait(filp, &rb->pollq, wait); if (iio_buffer_data_available(rb)) |