blob: b1dfba80d893dcd2de9c25bbc95d13f0ada52a70 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_PSMI_H_
#define _XE_PSMI_H_
struct xe_device;
int xe_psmi_init(struct xe_device *xe);
void xe_psmi_debugfs_register(struct xe_device *xe);
#endif
|