diff options
author | Anthony Felice <tony.felice@timesys.com> | 2014-05-29 17:19:44 -0400 |
---|---|---|
committer | Anthony Felice <tony.felice@timesys.com> | 2014-05-29 18:13:01 -0400 |
commit | 62d8d94a83ffbd5e1c8e99ffefc84811a3947ec9 (patch) | |
tree | d2540d43803dc66fbe14f6bab55831c3fc435a7d | |
parent | f2453fae2ffaaa41233a42497732be9ef263746e (diff) |
twr_vf600: Enable EDMA in UART Configuration3.0-vybrid-ts2.17
Issues reported in commit aed6c4fe5 have now been fixed.
Signed-off-by: Anthony Felice <tony.felice@timesys.com>
-rw-r--r-- | arch/arm/mach-mvf/board-twr-vf700.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-mvf/board-twr-vf700.c b/arch/arm/mach-mvf/board-twr-vf700.c index 576233588dde..3c19b1c70ec9 100644 --- a/arch/arm/mach-mvf/board-twr-vf700.c +++ b/arch/arm/mach-mvf/board-twr-vf700.c @@ -249,13 +249,13 @@ static struct platform_device mvf_twr_audio_device = { }; static struct imxuart_platform_data mvf_uart1_pdata = { - .flags = IMXUART_FIFO, + .flags = IMXUART_FIFO | IMXUART_EDMA, .dma_req_rx = DMA_MUX03_UART1_RX, .dma_req_tx = DMA_MUX03_UART1_TX, }; static struct imxuart_platform_data mvf_uart0_pdata = { - .flags = IMXUART_FIFO, + .flags = IMXUART_FIFO | IMXUART_EDMA, .dma_req_rx = DMA_MUX03_UART0_RX, .dma_req_tx = DMA_MUX03_UART0_TX, }; |