Lines Matching refs:exp_info
430 DEFINE_DMA_BUF_EXPORT_INFO(exp_info); in rk_cma_heap_allocate()
492 exp_info.exp_name = rk_dma_heap_get_name(heap); in rk_cma_heap_allocate()
493 exp_info.ops = &rk_cma_heap_buf_ops; in rk_cma_heap_allocate()
494 exp_info.size = buffer->len; in rk_cma_heap_allocate()
495 exp_info.flags = fd_flags; in rk_cma_heap_allocate()
496 exp_info.priv = buffer; in rk_cma_heap_allocate()
497 dmabuf = dma_buf_export(&exp_info); in rk_cma_heap_allocate()
581 struct rk_dma_heap_export_info exp_info; in __rk_add_cma_heap() local
588 exp_info.name = cma_get_name(cma); in __rk_add_cma_heap()
589 exp_info.ops = &rk_cma_heap_ops; in __rk_add_cma_heap()
590 exp_info.priv = cma_heap; in __rk_add_cma_heap()
591 exp_info.support_cma = true; in __rk_add_cma_heap()
593 cma_heap->heap = rk_dma_heap_add(&exp_info); in __rk_add_cma_heap()