Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: MIT
0002 /*
0003  * Copyright © 2020 Intel Corporation
0004  */
0005 
0006 #include "i915_drv.h"
0007 
0008 unsigned long
0009 i915_fence_context_timeout(const struct drm_i915_private *i915, u64 context)
0010 {
0011     if (CONFIG_DRM_I915_FENCE_TIMEOUT && context)
0012         return msecs_to_jiffies_timeout(CONFIG_DRM_I915_FENCE_TIMEOUT);
0013 
0014     return 0;
0015 }