xref: /linux/drivers/accel/amdxdna/amdxdna_debugfs.h (revision c3fb1fb9e65fa6a108b4d19c61bdcb47fd4fe180)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * Copyright (C) 2026, Advanced Micro Devices, Inc.
4  */
5 #ifndef _AMDXDNA_DEBUGFS_H_
6 #define _AMDXDNA_DEBUGFS_H_
7 
8 #include "amdxdna_pci_drv.h"
9 
10 #if defined(CONFIG_DEBUG_FS)
11 void amdxdna_debugfs_init(struct amdxdna_dev *xdna);
12 #else
13 static inline void amdxdna_debugfs_init(struct amdxdna_dev *xdna)
14 {
15 }
16 #endif /* CONFIG_DEBUG_FS */
17 
18 #endif
19