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
11struct drm_i915_private;
12
13static inline unsigned long
14i915_fence_timeout(const struct drm_i915_private *i915)
15{
16	return MAX_SCHEDULE_TIMEOUT;
17}
18
19#endif /* __I915_CONFIG_H__ */
20