]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
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)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 21 Sep 2015 17:10:44 +0000 (10:10 -0700)
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>
drivers/iio/industrialio-event.c

index 894d8137c4cfaf7a7b0deddfc407a550045ca3c9..52d4fcb0de1dc012083d9afa5f4991cf37b11f05 100644 (file)
@@ -84,7 +84,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);