diff options
Diffstat (limited to 'drivers/media/video/vivi.c')
-rw-r--r-- | drivers/media/video/vivi.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/drivers/media/video/vivi.c b/drivers/media/video/vivi.c index 841884af0cc0..e7c01d560b64 100644 --- a/drivers/media/video/vivi.c +++ b/drivers/media/video/vivi.c | |||
@@ -992,7 +992,8 @@ static int vidiocgmbuf (struct file *file, void *priv, struct video_mbuf *mbuf) | |||
992 | struct vivi_fh *fh=priv; | 992 | struct vivi_fh *fh=priv; |
993 | struct videobuf_queue *q=&fh->vb_vidq; | 993 | struct videobuf_queue *q=&fh->vb_vidq; |
994 | struct v4l2_requestbuffers req; | 994 | struct v4l2_requestbuffers req; |
995 | unsigned int i, ret; | 995 | unsigned int i; |
996 | int ret; | ||
996 | 997 | ||
997 | req.type = q->type; | 998 | req.type = q->type; |
998 | req.count = 8; | 999 | req.count = 8; |
@@ -1359,6 +1360,8 @@ static int __init vivi_init(void) | |||
1359 | dev->vidq.timeout.data = (unsigned long)dev; | 1360 | dev->vidq.timeout.data = (unsigned long)dev; |
1360 | init_timer(&dev->vidq.timeout); | 1361 | init_timer(&dev->vidq.timeout); |
1361 | 1362 | ||
1363 | vivi.current_norm = tvnorms[0].id; | ||
1364 | |||
1362 | ret = video_register_device(&vivi, VFL_TYPE_GRABBER, video_nr); | 1365 | ret = video_register_device(&vivi, VFL_TYPE_GRABBER, video_nr); |
1363 | printk(KERN_INFO "Video Technology Magazine Virtual Video Capture Board (Load status: %d)\n", ret); | 1366 | printk(KERN_INFO "Video Technology Magazine Virtual Video Capture Board (Load status: %d)\n", ret); |
1364 | return ret; | 1367 | return ret; |