blob: 93db13585b82632a039e4a16bc34a2fe9a1e9021 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_SRIOV_PF_DEBUGFS_H_
#define _XE_SRIOV_PF_DEBUGFS_H_
struct dentry;
struct xe_device;
#ifdef CONFIG_PCI_IOV
void xe_sriov_pf_debugfs_register(struct xe_device *xe, struct dentry *root);
#else
static inline void xe_sriov_pf_debugfs_register(struct xe_device *xe, struct dentry *root) { }
#endif
#endif
|