Home | History | Annotate | Line # | Download | only in selftests
      1 /*	$NetBSD: mock_timeline.h,v 1.2 2021/12/18 23:45:31 riastradh Exp $	*/
      2 
      3 /*
      4  * SPDX-License-Identifier: MIT
      5  *
      6  * Copyright  2017-2018 Intel Corporation
      7  */
      8 
      9 #ifndef __MOCK_TIMELINE__
     10 #define __MOCK_TIMELINE__
     11 
     12 #include <linux/types.h>
     13 
     14 struct intel_timeline;
     15 
     16 void mock_timeline_init(struct intel_timeline *timeline, u64 context);
     17 void mock_timeline_fini(struct intel_timeline *timeline);
     18 
     19 #endif /* !__MOCK_TIMELINE__ */
     20