rk30: DMA: modify 'include <mach/dma-pl330.h>' to '#include <plat/dma-pl330.h>' in devices.c and rk_serial.c

This commit is contained in:
hhb 2012-02-10 15:39:45 +08:00
commit e4897236ec
2 changed files with 5 additions and 1 deletions

View file

@ -21,7 +21,7 @@
#include <asm/pmu.h>
#include <mach/irqs.h>
#include <mach/board.h>
#include <mach/dma-pl330.h>
#include <plat/dma-pl330.h>
static u64 dma_dmamask = DMA_BIT_MASK(32);

View file

@ -91,7 +91,11 @@
#define USE_DMA (UART0_USE_DMA | UART1_USE_DMA | UART2_USE_DMA | UART3_USE_DMA)
#if USE_DMA
#ifdef CONFIG_ARCH_RK29
#include <mach/dma-pl330.h>
#else
#include <plat/dma-pl330.h>
#endif
#endif
#define DMA_TX_TRRIGE_LEVEL 30