iio: event: Remove negative error code from iio_event_poll
authorCristina Opriceana <cristina.opriceana@gmail.com>
Mon, 3 Aug 2015 10:00:47 +0000 (13:00 +0300)
committerJonathan Cameron <jic23@kernel.org>
Wed, 12 Aug 2015 18:26:39 +0000 (19:26 +0100)
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>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/iio/industrialio-event.c

index b2f63f9..cae332b 100644 (file)
@@ -90,7 +90,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);