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