diff options
author | Hans Verkuil <hverkuil@xs4all.nl> | 2010-09-30 14:18:52 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2010-10-21 05:06:19 +0200 |
commit | e3cfd447d01cf723ccda0ad6bfa2e85b73d3d747 (patch) | |
tree | 8fd50212aabd40320a41b6a55055fc808b544cd8 /drivers/media/video/pxa_camera.c | |
parent | V4L/DVB: gspca - sonixj: Propagate USB errors to higher level (diff) | |
download | linux-e3cfd447d01cf723ccda0ad6bfa2e85b73d3d747.tar.xz linux-e3cfd447d01cf723ccda0ad6bfa2e85b73d3d747.zip |
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/pxa_camera.c')
-rw-r--r-- | drivers/media/video/pxa_camera.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/pxa_camera.c b/drivers/media/video/pxa_camera.c index 7ffa525019d4..c143ed0a5270 100644 --- a/drivers/media/video/pxa_camera.c +++ b/drivers/media/video/pxa_camera.c @@ -852,7 +852,7 @@ static void pxa_camera_init_videobuf(struct videobuf_queue *q, */ videobuf_queue_sg_init(q, &pxa_videobuf_ops, NULL, &pcdev->lock, V4L2_BUF_TYPE_VIDEO_CAPTURE, V4L2_FIELD_NONE, - sizeof(struct pxa_buffer), icd); + sizeof(struct pxa_buffer), icd, NULL); } static u32 mclk_get_divisor(struct platform_device *pdev, |