]> Git Repo - linux.git/blob - arch/sparc/kernel/dma.c
Merge tag 'drm-misc-next-2017-11-30' of git://anongit.freedesktop.org/drm/drm-misc...
[linux.git] / arch / sparc / kernel / dma.c
1 // SPDX-License-Identifier: GPL-2.0
2 #include <linux/kernel.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.032504 seconds and 4 git commands to generate.