aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/media/platform/ti-vpe
diff options
context:
space:
mode:
authorSakari Ailus <sakari.ailus@iki.fi>2014-02-25 17:12:19 -0500
committerMauro Carvalho Chehab <m.chehab@samsung.com>2014-03-05 14:34:14 -0500
commitade48681f132188599c5cefa8a3287c2a26fb738 (patch)
tree3fbc34291e9556ad4f64982bf73801f533843b49 /drivers/media/platform/ti-vpe
parent939f1377fbdb5d0d6d6ee1e234b8ab9328ca77ef (diff)
[media] v4l: Rename vb2_queue.timestamp_type as timestamp_flags
The timestamp_type field used to contain only the timestamp type. Soon it will be used for timestamp source flags as well. Rename the field accordingly. [m.chehab@samsung.com: do the change also to drivers/staging/media and at s2255] Signed-off-by: Sakari Ailus <sakari.ailus@iki.fi> Acked-by: Hans Verkuil <hans.verkuil@cisco.com> Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
Diffstat (limited to 'drivers/media/platform/ti-vpe')
-rw-r--r--drivers/media/platform/ti-vpe/vpe.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/media/platform/ti-vpe/vpe.c b/drivers/media/platform/ti-vpe/vpe.c
index 1296c5386231..8ea3b89149cb 100644
--- a/drivers/media/platform/ti-vpe/vpe.c
+++ b/drivers/media/platform/ti-vpe/vpe.c
@@ -1770,7 +1770,7 @@ static int queue_init(void *priv, struct vb2_queue *src_vq,
1770 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer); 1770 src_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1771 src_vq->ops = &vpe_qops; 1771 src_vq->ops = &vpe_qops;
1772 src_vq->mem_ops = &vb2_dma_contig_memops; 1772 src_vq->mem_ops = &vb2_dma_contig_memops;
1773 src_vq->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_COPY; 1773 src_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1774 1774
1775 ret = vb2_queue_init(src_vq); 1775 ret = vb2_queue_init(src_vq);
1776 if (ret) 1776 if (ret)
@@ -1783,7 +1783,7 @@ static int queue_init(void *priv, struct vb2_queue *src_vq,
1783 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer); 1783 dst_vq->buf_struct_size = sizeof(struct v4l2_m2m_buffer);
1784 dst_vq->ops = &vpe_qops; 1784 dst_vq->ops = &vpe_qops;
1785 dst_vq->mem_ops = &vb2_dma_contig_memops; 1785 dst_vq->mem_ops = &vb2_dma_contig_memops;
1786 dst_vq->timestamp_type = V4L2_BUF_FLAG_TIMESTAMP_COPY; 1786 dst_vq->timestamp_flags = V4L2_BUF_FLAG_TIMESTAMP_COPY;
1787 1787
1788 return vb2_queue_init(dst_vq); 1788 return vb2_queue_init(dst_vq);
1789} 1789}