Release 4.15 arch/sparc/include/asm/dma-mapping.h
/* SPDX-License-Identifier: GPL-2.0 */
#ifndef ___ASM_SPARC_DMA_MAPPING_H
#define ___ASM_SPARC_DMA_MAPPING_H
#include <linux/scatterlist.h>
#include <linux/mm.h>
#include <linux/dma-debug.h>
extern const struct dma_map_ops *dma_ops;
extern const struct dma_map_ops pci32_dma_ops;
extern struct bus_type pci_bus_type;
static inline const struct dma_map_ops *get_arch_dma_ops(struct bus_type *bus)
{
#ifdef CONFIG_SPARC_LEON
if (sparc_cpu_model == sparc_leon)
return &pci32_dma_ops;
#endif
#if defined(CONFIG_SPARC32) && defined(CONFIG_PCI)
if (bus == &pci_bus_type)
return &pci32_dma_ops;
#endif
return dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 38 | 66.67% | 4 | 50.00% |
Andreas Larsson | 13 | 22.81% | 1 | 12.50% |
Bart Van Assche | 4 | 7.02% | 2 | 25.00% |
Christoph Hellwig | 2 | 3.51% | 1 | 12.50% |
Total | 57 | 100.00% | 8 | 100.00% |
#endif
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 55 | 59.14% | 5 | 33.33% |
Andreas Larsson | 13 | 13.98% | 1 | 6.67% |
Bart Van Assche | 6 | 6.45% | 2 | 13.33% |
Sam Ravnborg | 6 | 6.45% | 2 | 13.33% |
David S. Miller | 4 | 4.30% | 1 | 6.67% |
Keith M. Wesolowski | 4 | 4.30% | 1 | 6.67% |
Christoph Hellwig | 2 | 2.15% | 1 | 6.67% |
Al Viro | 2 | 2.15% | 1 | 6.67% |
Greg Kroah-Hartman | 1 | 1.08% | 1 | 6.67% |
Total | 93 | 100.00% | 15 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.