intel/aubinator: Stop searching after a custom handler is found
authorJordan Justen <jordan.l.justen@intel.com>
Tue, 28 Mar 2017 20:36:11 +0000 (13:36 -0700)
committerJordan Justen <jordan.l.justen@intel.com>
Thu, 6 Apr 2017 20:26:08 +0000 (13:26 -0700)
Signed-off-by: Jordan Justen <jordan.l.justen@intel.com>
Reviewed-by: Lionel Landwerlin <lionel.g.landwerlin@intel.com>
src/intel/tools/aubinator.c

index 05d932e..f1bedd2 100644 (file)
@@ -725,8 +725,10 @@ parse_commands(struct gen_spec *spec, uint32_t *cmds, int size, int engine)
          decode_group(inst, p, 0);
 
          for (i = 0; i < ARRAY_LENGTH(custom_handlers); i++) {
-            if (gen_group_get_opcode(inst) == custom_handlers[i].opcode)
+            if (gen_group_get_opcode(inst) == custom_handlers[i].opcode) {
                custom_handlers[i].handle(spec, p);
+               break;
+            }
          }
       }