[igt-dev] [PATCH i-g-t] intel_reg: Use static iterator

Petri Latvala petri.latvala at intel.com
Thu Jan 23 13:48:13 UTC 2020


Convert open-coded for loops to __for_each_static_engine. That takes
care of the last direct user of intel_execution_engines2.

More work is needed to make intel_reg support dynamically queried
engines but this restores the old functionality.

Signed-off-by: Petri Latvala <petri.latvala at intel.com>
Cc: Tvrtko Ursulin <tvrtko.ursulin at intel.com>
---
 tools/intel_reg.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/tools/intel_reg.c b/tools/intel_reg.c
index 847fdbed..5f1beba4 100644
--- a/tools/intel_reg.c
+++ b/tools/intel_reg.c
@@ -252,7 +252,7 @@ static const struct intel_execution_engine2 *find_engine(const char *name)
 	if (name[0] == '-')
 		name++;
 
-	for (e = intel_execution_engines2; e->name; e++) {
+	__for_each_static_engine(e) {
 		if (!strcasecmp(e->name, name))
 			return e;
 	}
@@ -783,7 +783,7 @@ static int intel_reg_help(struct config *config, int argc, char *argv[])
 	printf("\n\n");
 
 	printf("ENGINE is one of:\n");
-	for (e = intel_execution_engines2; e->name; e++)
+	__for_each_static_engine(e)
 		printf("%s -%s ", e->name, e->name);
 	printf("\n\n");
 
-- 
2.20.1



More information about the igt-dev mailing list