kernel/drivers/gpu/drm/i915/gt/intel_context_param.h
2024-07-22 17:22:30 +08:00

20 lines
367 B
C

/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2019 Intel Corporation
*/
#ifndef INTEL_CONTEXT_PARAM_H
#define INTEL_CONTEXT_PARAM_H
#include <linux/types.h>
#include "intel_context.h"
static inline void
intel_context_set_watchdog_us(struct intel_context *ce, u64 timeout_us)
{
ce->watchdog.timeout_us = timeout_us;
}
#endif /* INTEL_CONTEXT_PARAM_H */