diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2008-11-29 18:48:07 +0000 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2008-11-29 18:49:55 +0000 |
commit | f40b121d983dfc53bde882aadec7f2f0bbcbd1c2 (patch) | |
tree | ef7e99f154d2f9aa5109abdcb331342cad27fe22 /arch/arm/mach-rpc/include/mach/isa-dma.h | |
parent | dcea83adc666061864b82c96e059dffe7268b512 (diff) | |
download | op-kernel-dev-f40b121d983dfc53bde882aadec7f2f0bbcbd1c2.zip op-kernel-dev-f40b121d983dfc53bde882aadec7f2f0bbcbd1c2.tar.gz |
[ARM] Rename ISA mach/dma.h header to mach/isa-dma.h
This avoids confusion with platform specific DMA implementations in
mach/dma.h
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mach-rpc/include/mach/isa-dma.h')
-rw-r--r-- | arch/arm/mach-rpc/include/mach/isa-dma.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/arch/arm/mach-rpc/include/mach/isa-dma.h b/arch/arm/mach-rpc/include/mach/isa-dma.h new file mode 100644 index 0000000..bad7205 --- /dev/null +++ b/arch/arm/mach-rpc/include/mach/isa-dma.h @@ -0,0 +1,27 @@ +/* + * arch/arm/mach-rpc/include/mach/isa-dma.h + * + * Copyright (C) 1997 Russell King + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ +#ifndef __ASM_ARCH_DMA_H +#define __ASM_ARCH_DMA_H + +#define MAX_DMA_CHANNELS 8 + +#define DMA_0 0 +#define DMA_1 1 +#define DMA_2 2 +#define DMA_3 3 +#define DMA_S0 4 +#define DMA_S1 5 +#define DMA_VIRTUAL_FLOPPY 6 +#define DMA_VIRTUAL_SOUND 7 + +#define DMA_FLOPPY DMA_VIRTUAL_FLOPPY + +#endif /* _ASM_ARCH_DMA_H */ + |