Merge branch 'drm-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/airlied...
[deliverable/linux.git] / arch / sparc / kernel / dma.c
1 #include <linux/kernel.h>
2 #include <linux/module.h>
3 #include <linux/dma-mapping.h>
4 #include <linux/dma-debug.h>
5
6 #define PREALLOC_DMA_DEBUG_ENTRIES (1 << 15)
7
8 static int __init dma_init(void)
9 {
10 dma_debug_init(PREALLOC_DMA_DEBUG_ENTRIES);
11 return 0;
12 }
13 fs_initcall(dma_init);
This page took 0.032235 seconds and 6 git commands to generate.