dma_mcux_edma: Remove header file

There is really no need for this header file at all besides if
there is a requirement to be annoying.

Signed-off-by: Declan Snyder <declan.snyder@nxp.com>
This commit is contained in:
Declan Snyder 2025-07-07 17:12:42 -05:00 committed by Daniel DeGrasse
parent b3083dac07
commit a622070a24
2 changed files with 11 additions and 25 deletions

View File

@ -14,13 +14,23 @@
#include <soc.h>
#include <zephyr/init.h>
#include <zephyr/kernel.h>
#include <zephyr/device.h>
#include <zephyr/devicetree.h>
#include <zephyr/sys/atomic.h>
#include <zephyr/drivers/dma.h>
#include <zephyr/drivers/clock_control.h>
#include <zephyr/sys/barrier.h>
#include "dma_mcux_edma.h"
#include <fsl_common.h>
#include <fsl_edma.h>
#if defined(FSL_FEATURE_SOC_DMAMUX_COUNT) && FSL_FEATURE_SOC_DMAMUX_COUNT
#include <fsl_dmamux.h>
#endif
#if defined(FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET) && FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET
#include <fsl_memory.h>
#endif
#include <zephyr/logging/log.h>
#include <zephyr/irq.h>

View File

@ -1,24 +0,0 @@
/*
* Copyright 2020-23 NXP
*
* SPDX-License-Identifier: Apache-2.0
*/
#ifndef DMA_MCUX_EDMA_H_
#define DMA_MCUX_EDMA_H_
#include <errno.h>
#include <zephyr/device.h>
#include <zephyr/drivers/dma.h>
#include <soc.h>
#include <fsl_common.h>
#include "fsl_edma.h"
#if defined(FSL_FEATURE_SOC_DMAMUX_COUNT) && FSL_FEATURE_SOC_DMAMUX_COUNT
#include "fsl_dmamux.h"
#endif
#if defined(FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET) && FSL_FEATURE_MEMORY_HAS_ADDRESS_OFFSET
#include "fsl_memory.h"
#endif
#endif /* DMA_MCUX_EDMA_H_*/