blob: 0548b2e0316f1eab0b21edea3db8beedc456791a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* SPDX-License-Identifier: MIT */
/* Copyright © 2025 Intel Corporation */
#ifndef __I915_GEM_OBJECT_H__
#define __I915_GEM_OBJECT_H__
struct dma_fence;
static inline void i915_gem_fence_wait_priority_display(struct dma_fence *fence)
{
}
#endif
|