blob: 3bd599e7207c5b6e5d1db6441fb38b09844643fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2025 Intel Corporation
*/
#ifndef _XE_GUC_PAGEFAULT_H_
#define _XE_GUC_PAGEFAULT_H_
#include <linux/types.h>
struct xe_guc;
int xe_guc_pagefault_handler(struct xe_guc *guc, u32 *msg, u32 len);
#endif
|