summaryrefslogtreecommitdiff
path: root/tests/kms_flip.c
diff options
context:
space:
mode:
authorRobert Foss <robert.foss@collabora.com>2016-05-18 20:07:09 -0400
committerMarius Vlad <marius.c.vlad@intel.com>2016-07-04 17:15:57 +0300
commit5bed7622ad78c4a75bdd13d438509671d8061c68 (patch)
tree453dd2baed961af81dd79e191f43b51203d6131e /tests/kms_flip.c
parent8a4e62b947ec325af9d6eb8f00cba2d6ed8a59c0 (diff)
kms_flip: Change __wait_for_vblank to use helper function.
Change __wait_for_vblank() to use kmstest_get_vbl_flag() helper function. Signed-off-by: Robert Foss <robert.foss@collabora.com> Signed-off-by: Marius Vlad <marius.c.vlad@intel.com>
Diffstat (limited to 'tests/kms_flip.c')
-rw-r--r--tests/kms_flip.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/tests/kms_flip.c b/tests/kms_flip.c
index 72899d9a..f144b1e7 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