arm/imxrt: Remove extra lock from imxrt_edma

An extra `lock` appears in imxrt_edma due to 2 conflicting PRs:
- https://github.com/apache/nuttx/pull/15352
- https://github.com/apache/nuttx/pull/15353

This PR removes the extra `lock` in imxrt_edma.
This commit is contained in:
Lup Yuen Lee 2024-12-30 21:23:33 +08:00 committed by Xiang Xiao
parent 60683d7495
commit 9b9869158a

View file

@ -145,7 +145,6 @@ struct imxrt_edma_s
/* This array describes each DMA channel */ /* This array describes each DMA channel */
struct imxrt_dmach_s dmach[IMXRT_EDMA_NCHANNELS]; struct imxrt_dmach_s dmach[IMXRT_EDMA_NCHANNELS];
spinlock_t lock; /* Spinlock */
}; };
/**************************************************************************** /****************************************************************************