diff options
author | Ryan Mallon <rmallon@gmail.com> | 2012-01-11 02:29:26 +0400 |
---|---|---|
committer | Ryan Mallon <rmallon@gmail.com> | 2012-03-14 04:42:27 +0400 |
commit | a05baf335b8bc25e0fab0fd1821e796174f98ea1 (patch) | |
tree | f6cea3047979b47024b2d2dbbf700cee8861beaa /arch/arm/mach-ep93xx/dma.c | |
parent | 73303d129201de7af7fa837597e9c470c5efa71f (diff) | |
download | linux-a05baf335b8bc25e0fab0fd1821e796174f98ea1.tar.xz |
ep93xx: Move peripheral defines to local SoC header
Move the AHB/APB peripheral defines to local SoC header since they are
only needed by the core SoC code. The UART defines are not moved
because they are used by the mach/uncompress.h header.
Signed-off-by: Ryan Mallon <rmallon@gmail.com>
Reviewed-by: Mika Westerberg <mika.westerberg@iki.fi>
Acked-by: Hartley Sweeten <hsweeten@visionengravers.com>
Acked-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/mach-ep93xx/dma.c')
-rw-r--r-- | arch/arm/mach-ep93xx/dma.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/arm/mach-ep93xx/dma.c b/arch/arm/mach-ep93xx/dma.c index 5a2570881255..16976d7bdc8a 100644 --- a/arch/arm/mach-ep93xx/dma.c +++ b/arch/arm/mach-ep93xx/dma.c @@ -28,6 +28,8 @@ #include <mach/dma.h> #include <mach/hardware.h> +#include "soc.h" + #define DMA_CHANNEL(_name, _base, _irq) \ { .name = (_name), .base = (_base), .irq = (_irq) } |