diff options
Diffstat (limited to 'drivers/media')
-rw-r--r-- | drivers/media/v4l2-core/videobuf2-core.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/drivers/media/v4l2-core/videobuf2-core.c b/drivers/media/v4l2-core/videobuf2-core.c index d09be38dd377..db1235dcb328 100644 --- a/drivers/media/v4l2-core/videobuf2-core.c +++ b/drivers/media/v4l2-core/videobuf2-core.c | |||
@@ -1965,6 +1965,11 @@ unsigned int vb2_poll(struct vb2_queue *q, struct file *file, poll_table *wait) | |||
1965 | poll_wait(file, &fh->wait, wait); | 1965 | poll_wait(file, &fh->wait, wait); |
1966 | } | 1966 | } |
1967 | 1967 | ||
1968 | if (!V4L2_TYPE_IS_OUTPUT(q->type) && !(req_events & (POLLIN | POLLRDNORM))) | ||
1969 | return res; | ||
1970 | if (V4L2_TYPE_IS_OUTPUT(q->type) && !(req_events & (POLLOUT | POLLWRNORM))) | ||
1971 | return res; | ||
1972 | |||
1968 | /* | 1973 | /* |
1969 | * Start file I/O emulator only if streaming API has not been used yet. | 1974 | * Start file I/O emulator only if streaming API has not been used yet. |
1970 | */ | 1975 | */ |