diff options
Diffstat (limited to 'os/hal')
-rw-r--r-- | os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.c | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.c b/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.c index 61ebe1fad..28e2e38e5 100644 --- a/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.c +++ b/os/hal/ports/SAMA/LLD/DMAv1/sama_xdmac.c @@ -284,16 +284,12 @@ void dmaChannelRelease(sama_dma_channel_t *dmachp) { osalDbgAssert(dmachp->state != SAMA_DMA_FREE,
"not allocated");
-#if SAMA_HAL_IS_SECURE
- /* Disables the associated IRQ vector.*/
- aicDisableInt(ID_XDMAC0);
-#else
- aicDisableInt(ID_XDMAC1);
-#endif /* SAMA_HAL_IS_SECURE */
-
/* Disables channel */
dmaChannelDisable(dmachp);
+ /* Disables interrupt */
+ (dmachp)->xdmac->XDMAC_GID = XDMAC_GID_ID0 << ((dmachp)->chid);
+
/* Marks the stream as not allocated.*/
(dmachp)->state = SAMA_DMA_FREE;
}
|