xref: /linux/drivers/gpu/drm/xe/xe_devcoredump.h (revision 4b660dbd9ee2059850fd30e0df420ca7a38a1856)
1 /* SPDX-License-Identifier: MIT */
2 /*
3  * Copyright © 2023 Intel Corporation
4  */
5 
6 #ifndef _XE_DEVCOREDUMP_H_
7 #define _XE_DEVCOREDUMP_H_
8 
9 struct xe_device;
10 struct xe_sched_job;
11 
12 #ifdef CONFIG_DEV_COREDUMP
13 void xe_devcoredump(struct xe_sched_job *job);
14 #else
15 static inline void xe_devcoredump(struct xe_sched_job *job)
16 {
17 }
18 #endif
19 
20 #endif
21