aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/ivtv
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/ivtv')
-rw-r--r--drivers/media/video/ivtv/ivtv-fileops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/ivtv/ivtv-fileops.c b/drivers/media/video/ivtv/ivtv-fileops.c
index 6fb96f19a866..d949a81339d5 100644
--- a/drivers/media/video/ivtv/ivtv-fileops.c
+++ b/drivers/media/video/ivtv/ivtv-fileops.c
@@ -753,7 +753,7 @@ unsigned int ivtv_v4l2_enc_poll(struct file *filp, poll_table * wait)
753 IVTV_DEBUG_HI_FILE("Encoder poll\n"); 753 IVTV_DEBUG_HI_FILE("Encoder poll\n");
754 poll_wait(filp, &s->waitq, wait); 754 poll_wait(filp, &s->waitq, wait);
755 755
756 if (eof || s->q_full.length) 756 if (eof || s->q_full.length || s->q_io.length)
757 return POLLIN | POLLRDNORM; 757 return POLLIN | POLLRDNORM;
758 return 0; 758 return 0;
759} 759}