diff options
author | Arnd Bergmann <arnd@arndb.de> | 2019-08-09 19:33:18 +0300 |
---|---|---|
committer | Arnd Bergmann <arnd@arndb.de> | 2019-08-14 16:36:22 +0300 |
commit | aad7ad2a01e774f5cd0dde8f0bc6e253ae3f0d35 (patch) | |
tree | b6537d5cf903dc10b7bb972f84a2e517454108fa /arch/arm/plat-iop/adma.c | |
parent | 00c9755524fbaa28117be774d7c92fddb5ca02f3 (diff) | |
download | linux-aad7ad2a01e774f5cd0dde8f0bc6e253ae3f0d35.tar.xz |
dma: iop-adma: allow building without platform headers
Now that iop3xx and iop13xx are gone, the iop-adma driver no
longer needs to deal with incompatible register layout defined
in machine specific header files.
Move the iop32x specific definitions into drivers/dma/iop-adma.h
and the platform_data into include/linux/platform_data/dma-iop32x.h,
and change the machine code to no longer reference those.
The DMA0_ID/DMA1_ID/AAU_ID macros are required as part of the
platform data interface and still need to be visible, so move
those from one header to the other.
Link: https://lore.kernel.org/r/20190809163334.489360-4-arnd@arndb.de
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
Diffstat (limited to 'arch/arm/plat-iop/adma.c')
-rw-r--r-- | arch/arm/plat-iop/adma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/arch/arm/plat-iop/adma.c b/arch/arm/plat-iop/adma.c index 368496471e60..601cc9c11b07 100644 --- a/arch/arm/plat-iop/adma.c +++ b/arch/arm/plat-iop/adma.c @@ -6,8 +6,7 @@ #include <linux/platform_device.h> #include <asm/hardware/iop3xx.h> #include <linux/dma-mapping.h> -#include <mach/adma.h> -#include <asm/hardware/iop_adma.h> +#include <linux/platform_data/dma-iop32x.h> #define IRQ_DMA0_EOT IRQ_IOP32X_DMA0_EOT #define IRQ_DMA0_EOC IRQ_IOP32X_DMA0_EOC |