blob: 28267be61ae026ac3b187e9504873fb6444121c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
/* SPDX-License-Identifier: MIT */
/* Copyright © 2026 Intel Corporation */
#ifndef _XE_DISPLAY_VMA_H_
#define _XE_DISPLAY_VMA_H_
#include <linux/refcount.h>
struct xe_bo;
struct xe_ggtt_node;
struct i915_vma {
refcount_t ref;
struct xe_bo *bo, *dpt;
struct xe_ggtt_node *node;
};
#endif
|