f0c02c1b91
Move all timeline code under gt and rename to intel_gt prefix. Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com> Suggested-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk> Link: https://patchwork.freedesktop.org/patch/msgid/20190621070811.7006-32-tvrtko.ursulin@linux.intel.com
16 lines
326 B
C
16 lines
326 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2017-2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef __MOCK_TIMELINE__
|
|
#define __MOCK_TIMELINE__
|
|
|
|
struct intel_timeline;
|
|
|
|
void mock_timeline_init(struct intel_timeline *timeline, u64 context);
|
|
void mock_timeline_fini(struct intel_timeline *timeline);
|
|
|
|
#endif /* !__MOCK_TIMELINE__ */
|