aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/video/cx18/cx18-fileops.c
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/media/video/cx18/cx18-fileops.c')
-rw-r--r--drivers/media/video/cx18/cx18-fileops.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/drivers/media/video/cx18/cx18-fileops.c b/drivers/media/video/cx18/cx18-fileops.c
index 0b1dbc67e1ab..68dd50ac4bfe 100644
--- a/drivers/media/video/cx18/cx18-fileops.c
+++ b/drivers/media/video/cx18/cx18-fileops.c
@@ -188,7 +188,6 @@ static struct cx18_buffer *cx18_get_buffer(struct cx18_stream *s, int non_block,
188 while ((buf = cx18_dequeue(s_vbi, &s_vbi->q_full))) { 188 while ((buf = cx18_dequeue(s_vbi, &s_vbi->q_full))) {
189 /* byteswap and process VBI data */ 189 /* byteswap and process VBI data */
190 cx18_process_vbi_data(cx, buf, 190 cx18_process_vbi_data(cx, buf,
191 s_vbi->dma_pts,
192 s_vbi->type); 191 s_vbi->type);
193 cx18_stream_put_buf_fw(s_vbi, buf); 192 cx18_stream_put_buf_fw(s_vbi, buf);
194 } 193 }
@@ -209,8 +208,7 @@ static struct cx18_buffer *cx18_get_buffer(struct cx18_stream *s, int non_block,
209 cx18_buf_swap(buf); 208 cx18_buf_swap(buf);
210 else { 209 else {
211 /* byteswap and process VBI data */ 210 /* byteswap and process VBI data */
212 cx18_process_vbi_data(cx, buf, 211 cx18_process_vbi_data(cx, buf, s->type);
213 s->dma_pts, s->type);
214 } 212 }
215 return buf; 213 return buf;
216 } 214 }