From 3d75e777afe69733184e53a4d1cc27a6a306e6ac Mon Sep 17 00:00:00 2001 From: Sascha Hauer Date: Tue, 9 Jul 2013 14:20:00 +0200 Subject: [PATCH] dma: apbh-dma: move header file to common location As the apbh dma engine is also found on i.MX6 move the header file out of MXS specific directories. Signed-off-by: Sascha Hauer --- drivers/dma/apbh_dma.c | 2 +- drivers/mtd/nand/nand_mxs.c | 2 +- arch/arm/mach-mxs/include/mach/dma.h => include/dma/apbh-dma.h | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename arch/arm/mach-mxs/include/mach/dma.h => include/dma/apbh-dma.h (100%) diff --git a/drivers/dma/apbh_dma.c b/drivers/dma/apbh_dma.c index 235436416..b0a20b802 100644 --- a/drivers/dma/apbh_dma.c +++ b/drivers/dma/apbh_dma.c @@ -20,12 +20,12 @@ #include #include #include +#include #include #include #include #include #include -#include #define HW_APBHX_CTRL0 0x000 #define BM_APBH_CTRL0_APB_BURST8_EN (1 << 29) diff --git a/drivers/mtd/nand/nand_mxs.c b/drivers/mtd/nand/nand_mxs.c index 046fcc30b..f654af1fb 100644 --- a/drivers/mtd/nand/nand_mxs.c +++ b/drivers/mtd/nand/nand_mxs.c @@ -28,12 +28,12 @@ #include #include #include +#include #include #include #include #include #include -#include #define MX28_BLOCK_SFTRST (1 << 31) #define MX28_BLOCK_CLKGATE (1 << 30) diff --git a/arch/arm/mach-mxs/include/mach/dma.h b/include/dma/apbh-dma.h similarity index 100% rename from arch/arm/mach-mxs/include/mach/dma.h rename to include/dma/apbh-dma.h