From cb24aef4960708fbc7ee7bed7c13f193fc8a843f Mon Sep 17 00:00:00 2001 From: Luigi2898 Date: Thu, 19 Sep 2024 11:02:57 +0200 Subject: [PATCH] Don't disable global interrupts with DMA interrupt --- sw/device/lib/drivers/dma/dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sw/device/lib/drivers/dma/dma.c b/sw/device/lib/drivers/dma/dma.c index 520977702..4eb8d0895 100644 --- a/sw/device/lib/drivers/dma/dma.c +++ b/sw/device/lib/drivers/dma/dma.c @@ -60,7 +60,7 @@ extern "C" /** * Returns the mask to enable/disable DMA interrupts. */ -#define DMA_CSR_REG_MIE_MASK (( 1 << 19 ) | (1 << 11 ) ) // @ToDo Add definitions for this 19 and 11 +#define DMA_CSR_REG_MIE_MASK (( 1 << 19 )) // 19 is DMA fast interrupt bit in MIE CSR /** * Mask to determine if an address is multiple of 4 (Word aligned).