From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Date: Sun, 3 Nov 2013 23:28:24 +0000 (-0300)
Subject: [media] v4l: omap4iss: Set the vb2 timestamp type
X-Git-Tag: firefly_0821_release~176^2~3573^2~1139
X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bb4e7d6ea2b1e97348f8ac4be5b9493b70d9d54e;p=firefly-linux-kernel-4.4.55.git

[media] v4l: omap4iss: Set the vb2 timestamp type

Timestamps use the monotonic clock, configure the vb2 queue accordingly.

Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
---

diff --git a/drivers/staging/media/omap4iss/iss_video.c b/drivers/staging/media/omap4iss/iss_video.c
index 1cdfc4339498..ee3005482c48 100644
--- a/drivers/staging/media/omap4iss/iss_video.c
+++ b/drivers/staging/media/omap4iss/iss_video.c
@@ -972,6 +972,7 @@ static int iss_video_open(struct file *file)
 	q->ops = &iss_video_vb2ops;
 	q->mem_ops = &vb2_dma_contig_memops;
 	q->buf_struct_size = sizeof(struct iss_buffer);
+	q->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC;
 
 	ret = vb2_queue_init(q);
 	if (ret) {