diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-03-19 15:02:38 +0000 |
---|---|---|
committer | Ben Dooks <ben-linux@fluff.org> | 2009-05-01 11:39:07 +0100 |
commit | 20934cdbaae9c26a31d7f593c6a747c687ae79a1 (patch) | |
tree | 057ef914d4d27813e8d3c4bf74f8429afcec7fc1 | |
parent | c133c290118bfc99cd7a23b5a00b5252d2be90c8 (diff) |
[ARM] S3C24XX: dma.h should not include <mach/hardware.h>
The dma.h header does not need to include <mach/hardware.h> as there
is nothing it depends on. Remove the include and fixup the couple of
places where <mach/map.h> was not explicitly included (dragged in
via <mach/hardware.h>)
Note, we have to fix arch/arm/plat-s3c24xx/pm.c which seems to rely
on having <mach/hardware.h> included by this method.
Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r-- | arch/arm/mach-s3c2410/dma.c | 1 | ||||
-rw-r--r-- | arch/arm/mach-s3c2410/include/mach/dma.h | 1 |
2 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mach-s3c2410/dma.c b/arch/arm/mach-s3c2410/dma.c index aba159f7bb2c..dbf96e60d992 100644 --- a/arch/arm/mach-s3c2410/dma.c +++ b/arch/arm/mach-s3c2410/dma.c @@ -17,6 +17,7 @@ #include <linux/sysdev.h> #include <linux/serial_core.h> +#include <mach/map.h> #include <mach/dma.h> #include <plat/cpu.h> diff --git a/arch/arm/mach-s3c2410/include/mach/dma.h b/arch/arm/mach-s3c2410/include/mach/dma.h index 2fbabecf4f6e..1648311c7b47 100644 --- a/arch/arm/mach-s3c2410/include/mach/dma.h +++ b/arch/arm/mach-s3c2410/include/mach/dma.h @@ -15,7 +15,6 @@ #include <plat/dma.h> #include <linux/sysdev.h> -#include <mach/hardware.h> #define MAX_DMA_TRANSFER_SIZE 0x100000 /* Data Unit is half word */ |