repo.or.cz
/
linux-2.6.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
proc: Add proc_mkdir_data()
[linux-2.6.git]
/
arch
/
sparc
/
kernel
/
dma.c
blob
b667aa6f28f648610aa0efe0c17d08c75c57daa8
1
#include <linux/kernel.h>
2
#include <linux/dma-mapping.h>
3
#include <linux/dma-debug.h>
4
5
#define PREALLOC_DMA_DEBUG_ENTRIES (1 << 15)
6
7
static int
__init
dma_init
(
void
)
8
{
9
dma_debug_init
(
PREALLOC_DMA_DEBUG_ENTRIES
);
10
return
0
;
11
}
12
fs_initcall
(
dma_init
);