23 lines
470 B
C
23 lines
470 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (c) 2023 Cai Huoqing
|
|
* Synopsys DesignWare HDMA v0 debugfs
|
|
*
|
|
* Author: Cai Huoqing <cai.huoqing@linux.dev>
|
|
*/
|
|
|
|
#ifndef _DW_HDMA_V0_DEBUG_FS_H
|
|
#define _DW_HDMA_V0_DEBUG_FS_H
|
|
|
|
#include <linux/dma/edma.h>
|
|
|
|
#ifdef CONFIG_DEBUG_FS
|
|
void dw_hdma_v0_debugfs_on(struct dw_edma *dw);
|
|
#else
|
|
static inline void dw_hdma_v0_debugfs_on(struct dw_edma *dw)
|
|
{
|
|
}
|
|
#endif /* CONFIG_DEBUG_FS */
|
|
|
|
#endif /* _DW_HDMA_V0_DEBUG_FS_H */
|