Release 4.14 arch/sparc/kernel/dma.c
// SPDX-License-Identifier: GPL-2.0
#include <linux/kernel.h>
#include <linux/dma-mapping.h>
#include <linux/dma-debug.h>
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 15)
static int __init dma_init(void)
{
dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
return 0;
}
Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 10 | 58.82% | 1 | 50.00% |
FUJITA Tomonori | 7 | 41.18% | 1 | 50.00% |
Total | 17 | 100.00% | 2 | 100.00% |
fs_initcall(dma_init);
Overall Contributors
Person | Tokens | Prop | Commits | CommitProp |
David S. Miller | 21 | 58.33% | 1 | 33.33% |
FUJITA Tomonori | 14 | 38.89% | 1 | 33.33% |
Greg Kroah-Hartman | 1 | 2.78% | 1 | 33.33% |
Total | 36 | 100.00% | 3 | 100.00% |
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.