diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-03-19 15:02:35 (GMT) |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-01 10:39:06 (GMT) |
commit | 44dc94045f6ddbc07db3e0eb3448c2efc13ac2cf (patch) | |
tree | 8775d0acaf03ac9a36d6ef141b43582868687aa3 /arch/arm/plat-s3c24xx/dma.c | |
parent | 8970ef47d56fd3db28ee798b9d400caf08abd924 (diff) | |
download | linux-44dc94045f6ddbc07db3e0eb3448c2efc13ac2cf.tar.xz |
[ARM] S3C24XX: DMA: Split hardware regs out of <mach/dma.h>
The <mach/dma.h> is for the driver API for the DMA system and should
not have anything relying on the CPU specific registers.
Remove the registers to <plat/dma-regs.h> for the code that really
needs to know about them.
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Diffstat (limited to 'arch/arm/plat-s3c24xx/dma.c')
-rw-r--r-- | arch/arm/plat-s3c24xx/dma.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/plat-s3c24xx/dma.c b/arch/arm/plat-s3c24xx/dma.c index dc58a0d..7c37c9a 100644 --- a/arch/arm/plat-s3c24xx/dma.c +++ b/arch/arm/plat-s3c24xx/dma.c @@ -31,10 +31,10 @@ #include <asm/irq.h> #include <mach/hardware.h> #include <mach/dma.h> - #include <mach/map.h> #include <plat/dma-plat.h> +#include <plat/regs-dma.h> /* io map for dma */ static void __iomem *dma_base; |