Release 4.14 arch/ia64/kernel/dma-mapping.c
// SPDX-License-Identifier: GPL-2.0
#include <linux/dma-mapping.h>
#include <linux/export.h>
/* Set this to 1 if there is a HW IOMMU in the system */
int iommu_detected __read_mostly;
const struct dma_map_ops *dma_ops;
EXPORT_SYMBOL(dma_ops);
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 16)
static int __init dma_init(void)
{
dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
fujita | 14 | 82.35% | 1 | 50.00% |
Tony Luck | 3 | 17.65% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
fs_initcall(dma_init);
const struct dma_map_ops *dma_get_ops(struct device *dev)
{
return dma_ops;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 15 | 93.75% | 2 | 66.67% |
Bart Van Assche | 1 | 6.25% | 1 | 33.33% |
Total | 16 | 100.00% | 3 | 100.00% |
EXPORT_SYMBOL(dma_get_ops);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
FUJITA Tomonori | 38 | 54.29% | 4 | 44.44% |
fujita | 23 | 32.86% | 1 | 11.11% |
Tony Luck | 3 | 4.29% | 1 | 11.11% |
Paul Gortmaker | 3 | 4.29% | 1 | 11.11% |
Bart Van Assche | 2 | 2.86% | 1 | 11.11% |
Greg Kroah-Hartman | 1 | 1.43% | 1 | 11.11% |
Total | 70 | 100.00% | 9 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.