1/* SPDX-License-Identifier: MIT */
2/*
3 * Copyright �� 2022 Intel Corporation
4 */
5
6#ifndef _XE_GUC_LOG_TYPES_H_
7#define _XE_GUC_LOG_TYPES_H_
8
9#include <linux/types.h>
10
11struct xe_bo;
12
13/**
14 * struct xe_guc_log - GuC log
15 */
16struct xe_guc_log {
17	/** @level: GuC log level */
18	u32 level;
19	/** @bo: XE BO for GuC log */
20	struct xe_bo *bo;
21};
22
23#endif
24