1 /* 2 * Copyright (c) 2020 NXP Semiconductor INC. 3 * All rights reserved. 4 * 5 * SPDX-License-Identifier: Apache-2.0 6 */ 7 8 #ifndef DMA_MCUX_EDMA_H_ 9 #define DMA_MCUX_EDMA_H_ 10 11 #include <errno.h> 12 #include <zephyr/device.h> 13 #include <zephyr/drivers/dma.h> 14 #include <soc.h> 15 #include <fsl_common.h> 16 17 #include "fsl_edma.h" 18 #include "fsl_dmamux.h" 19 20 #endif /* DMA_MCUX_EDMA_H_*/ 21