/* * videobuf2-dma-contig.h - DMA contig memory allocator for videobuf2 * * Copyright (C) 2010 Samsung Electronics * * Author: Pawel Osciak <pawel@osciak.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation. */ #ifndef _MEDIA_VIDEOBUF2_DMA_CONTIG_H #define _MEDIA_VIDEOBUF2_DMA_CONTIG_H #include <media/videobuf2-v4l2.h> #include <linux/dma-mapping.h> struct dma_attrs;
static inline dma_addr_t vb2_dma_contig_plane_dma_addr(struct vb2_buffer *vb, unsigned int plane_no) { dma_addr_t *addr = vb2_plane_cookie(vb, plane_no); return *addr; }Contributors
Person | Tokens | Prop | Commits | CommitProp | |
pawel osciak | pawel osciak | 28 | 90.32% | 2 | 66.67% |
marek szyprowski | marek szyprowski | 3 | 9.68% | 1 | 33.33% |
Total | 31 | 100.00% | 3 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
tomasz figa | tomasz figa | 21 | 100.00% | 1 | 100.00% |
Total | 21 | 100.00% | 1 | 100.00% |
Person | Tokens | Prop | Commits | CommitProp | |
pawel osciak | pawel osciak | 62 | 62.63% | 2 | 33.33% |
tomasz figa | tomasz figa | 30 | 30.30% | 1 | 16.67% |
marek szyprowski | marek szyprowski | 3 | 3.03% | 1 | 16.67% |
albert wang | albert wang | 3 | 3.03% | 1 | 16.67% |
junghak sung | junghak sung | 1 | 1.01% | 1 | 16.67% |
Total | 99 | 100.00% | 6 | 100.00% |