brintos

brintos / linux-shallow public Read only

0
0
Text · 511 B · fb3342d Raw
23 lines · c
1/* SPDX-License-Identifier: GPL-2.0 */2/*3 * Copyright (c) 2018-2019 Synopsys, Inc. and/or its affiliates.4 * Synopsys DesignWare eDMA v0 core5 *6 * Author: Gustavo Pimentel <gustavo.pimentel@synopsys.com>7 */8 9#ifndef _DW_EDMA_V0_DEBUG_FS_H10#define _DW_EDMA_V0_DEBUG_FS_H11 12#include <linux/dma/edma.h>13 14#ifdef CONFIG_DEBUG_FS15void dw_edma_v0_debugfs_on(struct dw_edma *dw);16#else17static inline void dw_edma_v0_debugfs_on(struct dw_edma *dw)18{19}20#endif /* CONFIG_DEBUG_FS */21 22#endif /* _DW_EDMA_V0_DEBUG_FS_H */23