Release 4.15 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
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
Andrew Morton | 28 | 45.16% | 1 | 16.67% |
Christoph Hellwig | 16 | 25.81% | 1 | 16.67% |
Bart Van Assche | 9 | 14.52% | 2 | 33.33% |
Mikael Starvik | 8 | 12.90% | 1 | 16.67% |
Greg Kroah-Hartman | 1 | 1.61% | 1 | 16.67% |
Total | 62 | 100.00% | 6 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.