diff options
author | Anthony Felice <tony.felice@timesys.com> | 2014-03-27 15:53:09 -0400 |
---|---|---|
committer | Anthony Felice <tony.felice@timesys.com> | 2014-03-27 17:22:13 -0400 |
commit | aed6c4fe50bfa2b5f4d30f99e984cd6bae224158 (patch) | |
tree | c0070105739e3f4495055b4b606472f1210c447b | |
parent | 4ff9bbaa67ff75d0425eb910bd4a8eb1b1e4aaab (diff) |
twr_vf600: Disabled EDMA in UART Configuration3.0-vybrid-ts2.14
EDMA enabled in the UART configuration prevents ADC from working in MQX 4.0.2.
We also disable EDMA with UART in other Vybrid variants due to an
incompatibility with sysvinit.
-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 3c19b1c70ec9..576233588dde 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 | IMXUART_EDMA, + .flags = IMXUART_FIFO, .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 | IMXUART_EDMA, + .flags = IMXUART_FIFO, .dma_req_rx = DMA_MUX03_UART0_RX, .dma_req_tx = DMA_MUX03_UART0_TX, }; |