xref: /openbmc/linux/drivers/gpu/drm/i915/gem/selftests/igt_gem_utils.h (revision 04eb94d526423ff082efce61f4f26b0369d0bfdd)
1 /*
2  * SPDX-License-Identifier: MIT
3  *
4  * Copyright © 2018 Intel Corporation
5  */
6 
7 #ifndef __IGT_GEM_UTILS_H__
8 #define __IGT_GEM_UTILS_H__
9 
10 struct i915_request;
11 struct i915_gem_context;
12 struct intel_engine_cs;
13 
14 struct i915_request *
15 igt_request_alloc(struct i915_gem_context *ctx, struct intel_engine_cs *engine);
16 
17 #endif /* __IGT_GEM_UTILS_H__ */
18