summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/i915/i915_config.h
blob: f386328d9e953e3b8854e3378dad76c4538b9378 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/* SPDX-License-Identifier: MIT */
/*
 * Copyright © 2023 Intel Corporation
 */

#ifndef __I915_CONFIG_H__
#define __I915_CONFIG_H__

#include <linux/types.h>
#include <linux/limits.h>

unsigned long i915_fence_context_timeout(u64 context);

static inline unsigned long i915_fence_timeout(void)
{
	return i915_fence_context_timeout(U64_MAX);
}

#endif /* __I915_CONFIG_H__ */