mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-11 08:14:27 +08:00
98dc0454c0
Pull igt_flush_test() out into its own library before copying and pasting the code for a third time. Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk> Reviewed-by: Mika Kuoppala <mika.kuoppala@linux.intel.com> Link: https://patchwork.freedesktop.org/patch/msgid/20180505091014.26126-1-chris@chris-wilson.co.uk
15 lines
261 B
C
15 lines
261 B
C
/*
|
|
* SPDX-License-Identifier: MIT
|
|
*
|
|
* Copyright © 2018 Intel Corporation
|
|
*/
|
|
|
|
#ifndef IGT_FLUSH_TEST_H
|
|
#define IGT_FLUSH_TEST_H
|
|
|
|
struct drm_i915_private;
|
|
|
|
int igt_flush_test(struct drm_i915_private *i915, unsigned int flags);
|
|
|
|
#endif /* IGT_FLUSH_TEST_H */
|