Skip to content

Commit

Permalink
iio: event: Remove negative error code from iio_event_poll
Browse files Browse the repository at this point in the history
Negative return values are not supported by iio_event_poll since
its return type is unsigned int.

Fixes: f18e7a0 ("iio: Return -ENODEV for file operations if the device has been unregistered")

Signed-off-by: Cristina Opriceana <[email protected]>
Cc: <[email protected]>
Signed-off-by: Jonathan Cameron <[email protected]>
  • Loading branch information
cristina2689 authored and jic23 committed Aug 12, 2015
1 parent 1bdc029 commit 41d903c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion drivers/iio/industrialio-event.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 41d903c

Please sign in to comment.