Home
last modified time | relevance | path

Searched refs:non_coherent_mem (Results 1 – 2 of 2) sorted by relevance

/linux/drivers/media/common/videobuf2/
H A Dvideobuf2-core.c829 static void set_queue_coherency(struct vb2_queue *q, bool non_coherent_mem) in set_queue_coherency() argument
831 q->non_coherent_mem = 0; in set_queue_coherency()
835 q->non_coherent_mem = non_coherent_mem; in set_queue_coherency()
838 static bool verify_coherency_flags(struct vb2_queue *q, bool non_coherent_mem) in verify_coherency_flags() argument
840 if (non_coherent_mem != q->non_coherent_mem) { in verify_coherency_flags()
879 bool non_coherent_mem = flags & V4L2_MEMORY_FLAG_NON_COHERENT; in vb2_core_reqbufs() local
895 !verify_coherency_flags(q, non_coherent_mem)) { in vb2_core_reqbufs()
939 set_queue_coherency(q, non_coherent_mem); in vb2_core_reqbufs()
1046 bool non_coherent_mem = flags & V4L2_MEMORY_FLAG_NON_COHERENT; in vb2_core_create_bufs() local
1073 set_queue_coherency(q, non_coherent_mem); in vb2_core_create_bufs()
[all …]
/linux/include/media/
H A Dvideobuf2-core.h626 unsigned int non_coherent_mem:1; member