3
0
mirror of https://github.com/Qortal/Brooklyn.git synced 2025-02-01 07:42:18 +00:00
Brooklyn/drivers/gpu/drm/i915/gt/intel_context_param.h

20 lines
367 B
C
Raw Normal View History

2021-05-26 19:09:36 +00:00
/* SPDX-License-Identifier: MIT */
/*
* Copyright © 2019 Intel Corporation
*/
#ifndef INTEL_CONTEXT_PARAM_H
#define INTEL_CONTEXT_PARAM_H
2021-10-02 16:09:28 +00:00
#include <linux/types.h>
2021-05-26 19:09:36 +00:00
2021-10-02 16:09:28 +00:00
#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;
}
2021-05-26 19:09:36 +00:00
#endif /* INTEL_CONTEXT_PARAM_H */