diff options
author | Petri Latvala <petri.latvala@intel.com> | 2017-12-05 12:16:30 +0200 |
---|---|---|
committer | Petri Latvala <petri.latvala@intel.com> | 2017-12-07 11:52:47 +0200 |
commit | 261ab6bc964081ae62a6084c335033d8a48953fd (patch) | |
tree | 5604db7485d4c6e7b8614530dfb515990763811f | |
parent | 1db12466cb5ad8483cd469753d2e312a62d717b7 (diff) |
lib/igt_gt: Add sentinel to intel_execution_engines2
The for_each_engine_class_instance macro stops at e__->name being
NULL, so add an object that is so.
Signed-off-by: Petri Latvala <petri.latvala@intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
-rw-r--r-- | lib/igt_gt.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/igt_gt.c b/lib/igt_gt.c index 4a8f541f..ad6e6205 100644 --- a/lib/igt_gt.c +++ b/lib/igt_gt.c @@ -615,6 +615,7 @@ const struct intel_execution_engine2 intel_execution_engines2[] = { { "vcs0", I915_ENGINE_CLASS_VIDEO, 0 }, { "vcs1", I915_ENGINE_CLASS_VIDEO, 1 }, { "vecs0", I915_ENGINE_CLASS_VIDEO_ENHANCE, 0 }, + { } }; unsigned int |