mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-14 22:44:27 +08:00
5244ac2e2e
Move struct dentry variable from static definition (dw-edma-v0-debugfs.c) into dw_edma struct (dw-edma-core.h) Also the variable was renamed from base_dir to debugfs. Signed-off-by: Gustavo Pimentel <gustavo.pimentel@synopsys.com> Link: https://lore.kernel.org/r/07c1167b671e7b175700e2e7061cf0b3dd8c6adb.1613674948.git.gustavo.pimentel@synopsys.com Signed-off-by: Vinod Koul <vkoul@kernel.org>
28 lines
655 B
C
28 lines
655 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2018-2019 Synopsys, Inc. and/or its affiliates.
|
|
* Synopsys DesignWare eDMA v0 core
|
|
*
|
|
* Author: Gustavo Pimentel <gustavo.pimentel@synopsys.com>
|
|
*/
|
|
|
|
#ifndef _DW_EDMA_V0_DEBUG_FS_H
|
|
#define _DW_EDMA_V0_DEBUG_FS_H
|
|
|
|
#include <linux/dma/edma.h>
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
void dw_edma_v0_debugfs_on(struct dw_edma_chip *chip);
|
|
void dw_edma_v0_debugfs_off(struct dw_edma_chip *chip);
|
|
#else
|
|
static inline void dw_edma_v0_debugfs_on(struct dw_edma_chip *chip)
|
|
{
|
|
}
|
|
|
|
static inline void dw_edma_v0_debugfs_off(struct dw_edma_chip *chip)
|
|
{
|
|
}
|
|
#endif /* CONFIG_DEBUG_FS */
|
|
|
|
#endif /* _DW_EDMA_V0_DEBUG_FS_H */
|