Sign in
android
/
platform
/
hardware
/
bsp
/
kernel
/
common
/
v4.4
/
d8c5fca5da707e5caf43ce71384328a77d5a81a6
/
.
/
arch
/
sparc
/
kernel
/
dma.c
blob: b667aa6f28f648610aa0efe0c17d08c75c57daa8 [
file
]
#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
);