Staging
v0.8.1
swh:1:snp:a902887e4be9191b7c6c4406aa06b31c1ce2c7cc
Raw File
Tip revision: a1b8638ba1320e6684aa98233c15255eb803fac7 authored by Linus Torvalds on 27 September 2020, 21:38:10 UTC
Linux 5.9-rc7
Tip revision: a1b8638
i915_config.c
// SPDX-License-Identifier: MIT
/*
 * Copyright © 2020 Intel Corporation
 */

#include "i915_drv.h"

unsigned long
i915_fence_context_timeout(const struct drm_i915_private *i915, u64 context)
{
	if (context && IS_ACTIVE(CONFIG_DRM_I915_FENCE_TIMEOUT))
		return msecs_to_jiffies_timeout(CONFIG_DRM_I915_FENCE_TIMEOUT);

	return 0;
}
back to top