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