diff options
author | Michał Winiarski <michal.winiarski@intel.com> | 2017-10-18 10:02:12 +0200 |
---|---|---|
committer | Arkadiusz Hiler <arkadiusz.hiler@intel.com> | 2017-10-19 09:57:58 +0300 |
commit | e2ee529bb96320da0968ae52d318883106f3fa55 (patch) | |
tree | e9ccb16ce24b72027f8a9abce82b887abc417b83 /tests/gem_eio.c | |
parent | d4a4fbec0c079c7bec7fa6a2c756eea02314799e (diff) |
lib/i915: Move submission related helpers to lib/i915/gem_submission
Since I accidentally broke the build for some, by putting the pretty
printer for submission inside ifdef HAVE_PROCPS, it's time to move the
whole thing into lib/i915 while fixing this mistake.
Let's also rename the pretty printer and add a doc to it as well as the
section.
Fixes: f6dfe556659f ("lib: Extract helpers for determining submission method")
Signed-off-by: Michał Winiarski <michal.winiarski@intel.com>
Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'tests/gem_eio.c')
-rw-r--r-- | tests/gem_eio.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/gem_eio.c b/tests/gem_eio.c index c30212f4..2d4c95f4 100644 --- a/tests/gem_eio.c +++ b/tests/gem_eio.c @@ -431,7 +431,7 @@ igt_main igt_force_gpu_reset(fd); igt_install_exit_handler(exit_handler); - gem_show_submission_method(fd); + gem_submission_print_method(fd); igt_require_gem(fd); igt_require_hang_ring(fd, I915_EXEC_DEFAULT); } |