diff options
Diffstat (limited to 'drivers/media/video/cx18/cx18-driver.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-driver.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/media/video/cx18/cx18-driver.c b/drivers/media/video/cx18/cx18-driver.c index e12082b8a08d..ba4c3ceffbb3 100644 --- a/drivers/media/video/cx18/cx18-driver.c +++ b/drivers/media/video/cx18/cx18-driver.c | |||
@@ -669,6 +669,12 @@ static int __devinit cx18_init_struct1(struct cx18 *cx) | |||
669 | cx->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE; | 669 | cx->vbi.in.type = V4L2_BUF_TYPE_VBI_CAPTURE; |
670 | cx->vbi.sliced_in = &cx->vbi.in.fmt.sliced; | 670 | cx->vbi.sliced_in = &cx->vbi.in.fmt.sliced; |
671 | 671 | ||
672 | /* IVTV style VBI insertion into MPEG streams */ | ||
673 | INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_buf.list); | ||
674 | INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.list); | ||
675 | INIT_LIST_HEAD(&cx->vbi.sliced_mpeg_mdl.buf_list); | ||
676 | list_add(&cx->vbi.sliced_mpeg_buf.list, | ||
677 | &cx->vbi.sliced_mpeg_mdl.buf_list); | ||
672 | return 0; | 678 | return 0; |
673 | } | 679 | } |
674 | 680 | ||