diff options
author | Andy Walls <awalls@radix.net> | 2009-02-16 00:23:25 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab@redhat.com> | 2009-03-30 11:43:01 -0400 |
commit | fa3e70360c86480acbaa54c9791e843196327a66 (patch) | |
tree | bc8d1f8b68f9aad107d63d6b6c9e884519fe1d34 /drivers/media/video/cx18/cx18-vbi.c | |
parent | 5811cf99df2e3c102055be3ea77508e56c9f77c6 (diff) |
V4L/DVB (10757): cx18, v4l2-chip-ident: Finish conversion of AV decoder core to v4l2_subdev
Added a new chip identifer to v4l2-chip-ident for the integrated A/V broadcast
decoder core internal to the CX23418. Completed separation and encapsulation
of the A/V decoder core interface as a v4l2_subdevice. The cx18 driver now
compiles and links again.
Signed-off-by: Andy Walls <awalls@radix.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
Diffstat (limited to 'drivers/media/video/cx18/cx18-vbi.c')
-rw-r--r-- | drivers/media/video/cx18/cx18-vbi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/media/video/cx18/cx18-vbi.c b/drivers/media/video/cx18/cx18-vbi.c index 8e6f4d4aff9a..91c21dce607f 100644 --- a/drivers/media/video/cx18/cx18-vbi.c +++ b/drivers/media/video/cx18/cx18-vbi.c | |||
@@ -154,7 +154,7 @@ static u32 compress_sliced_buf(struct cx18 *cx, u32 line, u8 *buf, | |||
154 | if (p[0] != 0xff || p[1] || p[2] || p[3] != eav) | 154 | if (p[0] != 0xff || p[1] || p[2] || p[3] != eav) |
155 | continue; | 155 | continue; |
156 | vbi.p = p + 4; | 156 | vbi.p = p + 4; |
157 | cx18_av_cmd(cx, VIDIOC_INT_DECODE_VBI_LINE, &vbi); | 157 | v4l2_subdev_call(cx->sd_av, video, decode_vbi_line, &vbi); |
158 | if (vbi.type) { | 158 | if (vbi.type) { |
159 | cx->vbi.sliced_data[line].id = vbi.type; | 159 | cx->vbi.sliced_data[line].id = vbi.type; |
160 | cx->vbi.sliced_data[line].field = vbi.is_second_field; | 160 | cx->vbi.sliced_data[line].field = vbi.is_second_field; |