提交 41d903c0 编写于 作者: C Cristina Opriceana 提交者: Jonathan Cameron

iio: event: Remove negative error code from iio_event_poll

Negative return values are not supported by iio_event_poll since
its return type is unsigned int.

Fixes: f18e7a06 ("iio: Return -ENODEV for file operations if the device has been unregistered")
Signed-off-by: NCristina Opriceana <cristina.opriceana@gmail.com>
Cc: <Stable@vger.kernel.org>
Signed-off-by: NJonathan Cameron <jic23@kernel.org>
上级 1bdc0293
...@@ -90,7 +90,7 @@ static unsigned int iio_event_poll(struct file *filep, ...@@ -90,7 +90,7 @@ static unsigned int iio_event_poll(struct file *filep,
unsigned int events = 0; unsigned int events = 0;
if (!indio_dev->info) if (!indio_dev->info)
return -ENODEV; return events;
poll_wait(filep, &ev_int->wait, wait); poll_wait(filep, &ev_int->wait, wait);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册