Linux kernel mirror (for testing)
git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel
os
linux
1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright © 2026 Intel Corporation
4 */
5
6#ifndef _XE_GUC_RC_H_
7#define _XE_GUC_RC_H_
8
9struct xe_guc;
10enum slpc_gucrc_mode;
11
12int xe_guc_rc_init(struct xe_guc *guc);
13int xe_guc_rc_enable(struct xe_guc *guc);
14void xe_guc_rc_disable(struct xe_guc *guc);
15
16#endif