27 lines · c
1/* SPDX-License-Identifier: MIT */2/*3 * Copyright © 2023 Intel Corporation4 */5 6#ifndef _XE_DEVCOREDUMP_H_7#define _XE_DEVCOREDUMP_H_8 9struct xe_device;10struct xe_sched_job;11 12#ifdef CONFIG_DEV_COREDUMP13void xe_devcoredump(struct xe_sched_job *job);14int xe_devcoredump_init(struct xe_device *xe);15#else16static inline void xe_devcoredump(struct xe_sched_job *job)17{18}19 20static inline int xe_devcoredump_init(struct xe_device *xe)21{22 return 0;23}24#endif25 26#endif27