1 /* SPDX-License-Identifier: MIT */ 2 /* 3 * Copyright © 2023 Intel Corporation 4 */ 5 6 #ifndef __I915_CONFIG_H__ 7 #define __I915_CONFIG_H__ 8 9 #include <linux/sched.h> 10 11 static inline unsigned long i915_fence_timeout(void) 12 { 13 return MAX_SCHEDULE_TIMEOUT; 14 } 15 16 #endif /* __I915_CONFIG_H__ */ 17