summaryrefslogtreecommitdiff
path: root/tests/vc4_wait_bo.c
diff options
context:
space:
mode:
authorEric Anholt <eric@anholt.net>2016-01-25 13:15:36 -0800
committerEric Anholt <eric@anholt.net>2016-02-08 16:34:13 -0800
commit59f98997ab315465a052ed11e43ed7f6b0ec708a (patch)
tree63f0f5f5c5cb575b053009d2d90f4465e4062e5b /tests/vc4_wait_bo.c
parentb8badc243630e88f243b66c20599cfd035286382 (diff)
igt: Add a helper function for creating VC4 BOs.
v2: Use do_ioctl(). Signed-off-by: Eric Anholt <eric@anholt.net> Reviewed-by: Daniel Stone <daniels@collabora.com>
Diffstat (limited to 'tests/vc4_wait_bo.c')
-rw-r--r--tests/vc4_wait_bo.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/tests/vc4_wait_bo.c b/tests/vc4_wait_bo.c
index 04828ed6..1b924642 100644
--- a/tests/vc4_wait_bo.c
+++ b/tests/vc4_wait_bo.c
@@ -22,6 +22,7 @@
*/
#include "igt.h"
+#include "igt_vc4.h"
#include <unistd.h>
#include <stdlib.h>
#include <stdio.h>
@@ -39,14 +40,8 @@ igt_main
int bo_handle;
igt_fixture {
- struct drm_vc4_create_bo create = {
- .size = 4096,
- };
-
fd = drm_open_driver(DRIVER_VC4);
-
- do_ioctl(fd, DRM_IOCTL_VC4_CREATE_BO, &create);
- bo_handle = create.handle;
+ bo_handle = igt_vc4_create_bo(fd, 4096);
}
igt_subtest("bad-bo") {