Merge tag 'drm-misc-next-2021-10-14' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-2.6-microblaze.git] / drivers / gpu / drm / i915 / i915_config.c
1 // SPDX-License-Identifier: MIT
2 /*
3  * Copyright © 2020 Intel Corporation
4  */
5
6 #include "i915_drv.h"
7
8 unsigned long
9 i915_fence_context_timeout(const struct drm_i915_private *i915, u64 context)
10 {
11         if (CONFIG_DRM_I915_FENCE_TIMEOUT && context)
12                 return msecs_to_jiffies_timeout(CONFIG_DRM_I915_FENCE_TIMEOUT);
13
14         return 0;
15 }