blob: ae92ed1766e7053937509c4a1fbb4f687df1142c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_SRIOV_PF_SYSFS_H_
#define _XE_SRIOV_PF_SYSFS_H_
struct xe_device;
int xe_sriov_pf_sysfs_init(struct xe_device *xe);
void xe_sriov_pf_sysfs_link_vfs(struct xe_device *xe, unsigned int num_vfs);
void xe_sriov_pf_sysfs_unlink_vfs(struct xe_device *xe, unsigned int num_vfs);
#endif
|