Skip to content

Commit ae43870

Browse files
LaurentiuM1234mmahadevan108
authored andcommitted
hal_nxp.cmake: fix bad edma directory naming
When using the new Zephyr EDMA driver, Zepyhr tries to include the old "edma" directory, which results in a build error since "driver_edma_rev2.cmake" is not placed inside that directory. To fix this, change the included directory's name to edma_rev2, which is the directory that contains the files associated with EDMA rev2 driver from NXP HAL. Signed-off-by: Laurentiu Mihalcea <[email protected]>
1 parent ecb9e4c commit ae43870

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mcux/hal_nxp.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ include_driver_ifdef(CONFIG_DMA_MCUX_SMARTDMA smartdma driver_lpc_smartdma)
215215
include_driver_ifdef(CONFIG_DAC_MCUX_LPDAC dac_1 driver_dac_1)
216216
include_driver_ifdef(CONFIG_NXP_IRQSTEER irqsteer driver_irqsteer)
217217
include_driver_ifdef(CONFIG_AUDIO_DMIC_MCUX dmic driver_dmic)
218-
include_driver_ifdef(CONFIG_DMA_NXP_EDMA edma driver_edma_rev2)
218+
include_driver_ifdef(CONFIG_DMA_NXP_EDMA edma_rev2 driver_edma_rev2)
219219

220220
if ((${MCUX_DEVICE} MATCHES "MIMXRT1[0-9][0-9][0-9]") AND (NOT (CONFIG_SOC_MIMXRT1166_CM4 OR CONFIG_SOC_MIMXRT1176_CM4)))
221221
include_driver_ifdef(CONFIG_HAS_MCUX_CACHE cache/armv7-m7 driver_cache_armv7_m7)

0 commit comments

Comments
 (0)