From aed6c4fe50bfa2b5f4d30f99e984cd6bae224158 Mon Sep 17 00:00:00 2001 From: Anthony Felice Date: Thu, 27 Mar 2014 15:53:09 -0400 Subject: twr_vf600: Disabled EDMA in UART Configuration 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. --- arch/arm/mach-mvf/board-twr-vf700.c | 4 ++-- 1 file 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, }; -- cgit v1.2.3