Release 4.14 arch/cris/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef _ASM_CRIS_DMA_MAPPING_H
#define _ASM_CRIS_DMA_MAPPING_H
#ifdef CONFIG_PCI
extern const struct dma_map_ops v32_dma_ops;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
return &v32_dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Christoph Hellwig | 9 | 47.37% | 1 | 20.00% |
Andrew Morton | 5 | 26.32% | 1 | 20.00% |
Bart Van Assche | 4 | 21.05% | 2 | 40.00% |
Mikael Starvik | 1 | 5.26% | 1 | 20.00% |
Total | 19 | 100.00% | 5 | 100.00% |
#else
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
BUG();
return NULL;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 15 | 71.43% | 1 | 25.00% |
Bart Van Assche | 4 | 19.05% | 2 | 50.00% |
Christoph Hellwig | 2 | 9.52% | 1 | 25.00% |
Total | 21 | 100.00% | 4 | 100.00% |
#endif
static inline void
dma_cache_sync(struct device *dev, void *vaddr, size_t size,
enum dma_data_direction direction)
{
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
Mikael Starvik | 14 | 63.64% | 1 | 33.33% |
Ralf Bächle | 5 | 22.73% | 1 | 33.33% |
Andrew Morton | 3 | 13.64% | 1 | 33.33% |
Total | 22 | 100.00% | 3 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 31 | 36.90% | 1 | 14.29% |
Mikael Starvik | 22 | 26.19% | 1 | 14.29% |
Christoph Hellwig | 16 | 19.05% | 1 | 14.29% |
Bart Van Assche | 9 | 10.71% | 2 | 28.57% |
Ralf Bächle | 5 | 5.95% | 1 | 14.29% |
Greg Kroah-Hartman | 1 | 1.19% | 1 | 14.29% |
Total | 84 | 100.00% | 7 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.