xref: /openbsd-src/sys/dev/pci/drm/i915/gt/intel_migrate_types.h (revision 5ca02815211fc20fa71222bf4e6148b043e505b3)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2020 Intel Corporation
4  */
5 
6 #ifndef __INTEL_MIGRATE_TYPES__
7 #define __INTEL_MIGRATE_TYPES__
8 
9 struct intel_context;
10 
11 struct intel_migrate {
12 	struct intel_context *context;
13 };
14 
15 #endif /* __INTEL_MIGRATE_TYPES__ */
16