/* SPDX-License-Identifier: MIT */ /* * Copyright © 2022 Intel Corporation */ #ifndef _XE_PREEMPT_FENCE_TYPES_H_ #define _XE_PREEMPT_FENCE_TYPES_H_ #include <linux/dma-fence.h> #include <linux/workqueue.h> struct xe_exec_queue; /** * struct xe_preempt_fence - XE preempt fence * * hardware and triggers a callback once the xe_engine is complete. */ struct xe_preempt_fence { … }; #endif