repo.or.cz
/
linux-2.6
/
linux-acpi-2.6
/
ibm-acpi-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
st: fix race in st_scsi_execute_end
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git]
/
arch
/
arm
/
mach-shark
/
dma.c
blob
10b5b8b3272a81b6bfd92068c625b72ed5174462
1
/*
2
* linux/arch/arm/mach-shark/dma.c
3
*
4
* by Alexander Schulz
5
*
6
* derived from:
7
* arch/arm/kernel/dma-ebsa285.c
8
* Copyright (C) 1998 Phil Blundell
9
*/
10
11
#include <linux/init.h>
12
13
#include <asm/dma.h>
14
#include <asm/mach/dma.h>
15
16
static int
__init
shark_dma_init
(
void
)
17
{
18
#ifdef CONFIG_ISA_DMA
19
isa_init_dma
();
20
#endif
21
return
0
;
22
}
23
core_initcall
(
shark_dma_init
);