mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-01-31 23:32:17 +00:00
24 lines
506 B
C
24 lines
506 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"
|
|
|
|
int intel_context_set_ring_size(struct intel_context *ce, long sz);
|
|
long intel_context_get_ring_size(struct intel_context *ce);
|
|
|
|
static inline int
|
|
intel_context_set_watchdog_us(struct intel_context *ce, u64 timeout_us)
|
|
{
|
|
ce->watchdog.timeout_us = timeout_us;
|
|
return 0;
|
|
}
|
|
|
|
#endif /* INTEL_CONTEXT_PARAM_H */
|