diff options
author | Luc Saillard <luc@saillard.org> | 2007-04-22 22:55:10 -0400 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@infradead.org> | 2007-04-27 14:45:51 -0400 |
commit | 288bb0e79015d4121d4ccf77a4db2bde27a49492 (patch) | |
tree | 4b396f1ac021add93a7deac55a6b26f981bdc22a /drivers/media/video/pwc | |
parent | 9ee6d78cd4112c0f5a257a01383c64dadbf66da9 (diff) |
V4L/DVB (5548): Fix v4l2 buffer to the length
Set the length of the v4l2 buffer to the length of the mapped memory.
This should fix the problem with amsn.
Signed-off-by: Mauro Carvalho Chehab <mchehab@infradead.org>
Diffstat (limited to 'drivers/media/video/pwc')
-rw-r--r-- | drivers/media/video/pwc/pwc-v4l.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pwc/pwc-v4l.c b/drivers/media/video/pwc/pwc-v4l.c index e20251d05bf6..32fbe1ae6251 100644 --- a/drivers/media/video/pwc/pwc-v4l.c +++ b/drivers/media/video/pwc/pwc-v4l.c | |||
@@ -1168,7 +1168,7 @@ int pwc_video_do_ioctl(struct inode *inode, struct file *file, | |||
1168 | buf->sequence = 0; | 1168 | buf->sequence = 0; |
1169 | buf->memory = V4L2_MEMORY_MMAP; | 1169 | buf->memory = V4L2_MEMORY_MMAP; |
1170 | buf->m.offset = pdev->fill_image * pdev->len_per_image; | 1170 | buf->m.offset = pdev->fill_image * pdev->len_per_image; |
1171 | buf->length = buf->bytesused; | 1171 | buf->length = pdev->len_per_image; |
1172 | pwc_next_image(pdev); | 1172 | pwc_next_image(pdev); |
1173 | 1173 | ||
1174 | PWC_DEBUG_IOCTL("VIDIOC_DQBUF: buf->index=%d\n",buf->index); | 1174 | PWC_DEBUG_IOCTL("VIDIOC_DQBUF: buf->index=%d\n",buf->index); |