From 0b4c5fb836fcb430decf88c75f0ac1019948daa3 Mon Sep 17 00:00:00 2001 From: Suguru Saito Date: Tue, 27 Apr 2021 19:19:15 +0900 Subject: [PATCH] sharp: fix to reset LCDIF module before running linux --- board/sharp/common/dma.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/sharp/common/dma.c b/board/sharp/common/dma.c index 572d04577f..f725c6bd50 100644 --- a/board/sharp/common/dma.c +++ b/board/sharp/common/dma.c @@ -4,4 +4,6 @@ void board_quiesce_devices(void) { mxs_dma_disable(MXS_DMA_CHANNEL_AHB_APBH_LCDIF); + mxs_dma_release(MXS_DMA_CHANNEL_AHB_APBH_LCDIF); + lcdif_power_down(); }