9
0
Fork 0

dma: apbh: remove CONFIG_ARCH_DMA_PIO_WORDS

This define allows to overwrite DMA_PIO_WORDS with an architecture
specific value. Since this is unused and not clean anyway remove
it.

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2013-07-09 14:23:17 +02:00
parent 3d75e777af
commit 322d96e29d
1 changed files with 2 additions and 7 deletions

View File

@ -28,12 +28,6 @@
#include <linux/list.h>
#ifndef CONFIG_ARCH_DMA_PIO_WORDS
#define DMA_PIO_WORDS 15
#else
#define DMA_PIO_WORDS CONFIG_ARCH_DMA_PIO_WORDS
#endif
#define MXS_DMA_ALIGNMENT 32
/*
@ -90,7 +84,8 @@ struct mxs_dma_cmd {
dma_addr_t address;
unsigned long alternate;
};
unsigned long pio_words[DMA_PIO_WORDS];
#define APBH_DMA_PIO_WORDS 15
unsigned long pio_words[APBH_DMA_PIO_WORDS];
};
/*