[Intel-gfx] [PATCH i-g-t v6 7/7] kms_flip: Change __wait_for_vblank to use helper function.
robert.foss at collabora.com
robert.foss at collabora.com
Thu May 19 00:07:09 UTC 2016
From: Robert Foss <robert.foss at collabora.com>
Change __wait_for_vblank() to use kmstest_get_vbl_flag() helper function.
Signed-off-by: Robert Foss <robert.foss at collabora.com>
---
tests/kms_flip.c | 8 +++-----
1 file changed, 3 insertions(+), 5 deletions(-)
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 6ec97d0..b3fcb40 100644
--- a/tests/kms_flip.c
+++ b/tests/kms_flip.c
@@ -481,15 +481,13 @@ static int __wait_for_vblank(unsigned int flags, int crtc_idx,
{
drmVBlank wait_vbl;
int ret;
- unsigned crtc_idx_mask;
+ uint32_t pipe_id_flag;
bool event = !(flags & TEST_VBLANK_BLOCK);
memset(&wait_vbl, 0, sizeof(wait_vbl));
+ pipe_id_flag = kmstest_get_vbl_flag(crtc_idx);
- crtc_idx_mask = crtc_idx << DRM_VBLANK_HIGH_CRTC_SHIFT;
- igt_assert(!(crtc_idx_mask & ~DRM_VBLANK_HIGH_CRTC_MASK));
-
- wait_vbl.request.type = crtc_idx_mask;
+ wait_vbl.request.type = pipe_id_flag;
if (flags & TEST_VBLANK_ABSOLUTE)
wait_vbl.request.type |= DRM_VBLANK_ABSOLUTE;
else
--
2.7.4
More information about the Intel-gfx
mailing list