blob: 8a048980ea38a63b6377d6c46328262c9891b206 (
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 __I915_GEM_OBJECT_H__
#define __I915_GEM_OBJECT_H__
struct dma_fence;
struct i915_sched_attr;
static inline void i915_gem_fence_wait_priority(struct dma_fence *fence,
const struct i915_sched_attr *attr)
{
}
#endif
|