15 lines
243 B
C
15 lines
243 B
C
/* 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
|