Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/drivers/dma/dw-edma/dw-edma-v0-core.h
26282 views
1
/* SPDX-License-Identifier: GPL-2.0 */
2
/*
3
* Copyright (c) 2018-2019 Synopsys, Inc. and/or its affiliates.
4
* Synopsys DesignWare eDMA v0 core
5
*
6
* Author: Gustavo Pimentel <[email protected]>
7
*/
8
9
#ifndef _DW_EDMA_V0_CORE_H
10
#define _DW_EDMA_V0_CORE_H
11
12
#include <linux/dma/edma.h>
13
14
/* eDMA core register */
15
void dw_edma_v0_core_register(struct dw_edma *dw);
16
17
#endif /* _DW_EDMA_V0_CORE_H */
18
19