Gitiles
Code Review
Sign In
LeafOS
/
LeafOS-Devices
/
android_kernel_samsung_universal7904
/
7306266e0a502ce70abb9ec37c6e8fc4ebd2748f
/
.
/
arch
/
sparc
/
kernel
/
dma.c
blob: b667aa6f28f648610aa0efe0c17d08c75c57daa8 [
file
] [
log
] [
blame
]
#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
;
}
fs_initcall
(
dma_init
);