[media] marvell-ccic: fix streaming issues
authorHans Verkuil <hans.verkuil@cisco.com>
Thu, 5 Mar 2015 20:48:39 +0000 (17:48 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Fri, 1 May 2015 10:45:51 +0000 (07:45 -0300)
- fill in timestamp
- fill in field
- start the sequence counter at 0, not 1

Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Acked-by: Jonathan Corbet <corbet@lwn.net>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/marvell-ccic/mcam-core.c

index a1312a5dd294a77296a6bb8c0c9e4185fbf311c7..6b7b38bd5baf4eaf875b344864b2866dd9dac8b9 100644 (file)
@@ -239,6 +239,8 @@ static void mcam_buffer_done(struct mcam_camera *cam, int frame,
 {
        vbuf->v4l2_buf.bytesused = cam->pix_format.sizeimage;
        vbuf->v4l2_buf.sequence = cam->buf_seq[frame];
+       vbuf->v4l2_buf.field = V4L2_FIELD_NONE;
+       v4l2_get_timestamp(&vbuf->v4l2_buf.timestamp);
        vb2_set_plane_payload(vbuf, 0, cam->pix_format.sizeimage);
        vb2_buffer_done(vbuf, VB2_BUF_STATE_DONE);
 }
@@ -1671,7 +1673,7 @@ static void mcam_frame_complete(struct mcam_camera *cam, int frame)
        set_bit(frame, &cam->flags);
        clear_bit(CF_DMA_ACTIVE, &cam->flags);
        cam->next_buf = frame;
-       cam->buf_seq[frame] = ++(cam->sequence);
+       cam->buf_seq[frame] = cam->sequence++;
        cam->frame_state.frames++;
        /*
         * "This should never happen"