diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-09-30 09:18:52 -0300 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-21 01:06:19 -0200 |
commit | e3cfd447d01cf723ccda0ad6bfa2e85b73d3d747 (patch) | |
tree | 8fd50212aabd40320a41b6a55055fc808b544cd8 /drivers/media/video/sh_vou.c | |
parent | 4bf8b679029127fd84e9bfeb8710723a426e89ad (diff) |
V4L/DVB: videobuf: add ext_lock argument to the queue init functions (part 2)
Missed a few init functions on non-Intel platforms the first time :-(
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/sh_vou.c')
-rw-r--r-- | drivers/media/video/sh_vou.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/media/video/sh_vou.c b/drivers/media/video/sh_vou.c index d3acd02a1632..195ac8651160 100644 --- a/drivers/media/video/sh_vou.c +++ b/drivers/media/video/sh_vou.c @@ -1189,7 +1189,8 @@ static int sh_vou_open(struct file *file) vou_dev->v4l2_dev.dev, &vou_dev->lock, V4L2_BUF_TYPE_VIDEO_OUTPUT, V4L2_FIELD_NONE, - sizeof(struct videobuf_buffer), vdev); + sizeof(struct videobuf_buffer), vdev, + NULL); return 0; } |