1/* SPDX-License-Identifier: GPL-2.0 */ 2/* 3 * Copyright (c) 2023 Cai Huoqing 4 * Synopsys DesignWare HDMA v0 core 5 * 6 * Author: Cai Huoqing <[email protected]> 7 */ 8 9#ifndef _DW_HDMA_V0_CORE_H 10#define _DW_HDMA_V0_CORE_H 11 12#include <linux/dma/edma.h> 13 14/* HDMA core register */ 15void dw_hdma_v0_core_register(struct dw_edma *dw); 16 17#endif /* _DW_HDMA_V0_CORE_H */ 18 19