xref: /linux/drivers/gpu/drm/xe/compat-i915-headers/i915_config.h (revision 41c177cf354126a22443b5c80cec9fdd313e67e1)
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 struct drm_i915_private;
12 
13 static inline unsigned long
i915_fence_timeout(const struct drm_i915_private * i915)14 i915_fence_timeout(const struct drm_i915_private *i915)
15 {
16 	return MAX_SCHEDULE_TIMEOUT;
17 }
18 
19 #endif /* __I915_CONFIG_H__ */
20