Clean up the SPDX licence declarations to comply with checkpatch. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Michal Wajdeczko <michal.wajdeczko@intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20210122192913.4518-1-chris@chris-wilson.co.uk Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
23 lines
632 B
C
23 lines
632 B
C
/* SPDX-License-Identifier: MIT */
|
|
/*
|
|
* Copyright © 2019 Intel Corporation
|
|
*/
|
|
|
|
#ifndef INTEL_ENGINE_HEARTBEAT_H
|
|
#define INTEL_ENGINE_HEARTBEAT_H
|
|
|
|
struct intel_engine_cs;
|
|
|
|
void intel_engine_init_heartbeat(struct intel_engine_cs *engine);
|
|
|
|
int intel_engine_set_heartbeat(struct intel_engine_cs *engine,
|
|
unsigned long delay);
|
|
|
|
void intel_engine_park_heartbeat(struct intel_engine_cs *engine);
|
|
void intel_engine_unpark_heartbeat(struct intel_engine_cs *engine);
|
|
|
|
int intel_engine_pulse(struct intel_engine_cs *engine);
|
|
int intel_engine_flush_barriers(struct intel_engine_cs *engine);
|
|
|
|
#endif /* INTEL_ENGINE_HEARTBEAT_H */
|