summaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2013-07-09 16:47:09 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2013-07-23 16:25:14 +0200
commitf659fd30693f15c8062f70afd0ea4d20dc31a293 (patch)
tree23e6a853a63d016e1507a4e86a646c4d9d009e17 /drivers/dma
parent85fd269e76ebbcc6bcf1efcae6fad983c2bd63f7 (diff)
downloadbarebox-f659fd30693f15c8062f70afd0ea4d20dc31a293.tar.gz
barebox-f659fd30693f15c8062f70afd0ea4d20dc31a293.tar.xz
dma: apbh: cleanup includes
Several includes are unused, remove them. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/apbh_dma.c12
1 files changed, 5 insertions, 7 deletions
diff --git a/drivers/dma/apbh_dma.c b/drivers/dma/apbh_dma.c
index 89948bc4a3..665d394086 100644
--- a/drivers/dma/apbh_dma.c
+++ b/drivers/dma/apbh_dma.c
@@ -15,19 +15,17 @@
* (at your option) any later version.
*/
+#include <dma/apbh-dma.h>
+#include <stmp-device.h>
#include <linux/list.h>
-
#include <common.h>
#include <driver.h>
-#include <init.h>
#include <malloc.h>
#include <errno.h>
-#include <dma/apbh-dma.h>
-#include <stmp-device.h>
+#include <init.h>
+#include <io.h>
+
#include <asm/mmu.h>
-#include <asm/io.h>
-#include <mach/clock.h>
-#include <mach/imx-regs.h>
#define HW_APBHX_CTRL0 0x000
#define BM_APBH_CTRL0_APB_BURST8_EN (1 << 29)