diff options
author | Kenneth Graunke <[email protected]> | 2017-03-15 00:38:50 -0700 |
---|---|---|
committer | Kenneth Graunke <[email protected]> | 2017-03-16 10:48:32 -0700 |
commit | 65138ce0196d9b9d0a99fbac1ddf936a8b7c522b (patch) | |
tree | 890431b6cb766375e6d0693f2eaeb6f53cf52155 /src/intel/tools/aubinator.c | |
parent | bd25d9670b466043cdb5d9668f82accbd587c889 (diff) |
aubinator: Fix indentation.
Three space, not four.
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel/tools/aubinator.c')
-rw-r--r-- | src/intel/tools/aubinator.c | 13 |
1 files changed, 6 insertions, 7 deletions
diff --git a/src/intel/tools/aubinator.c b/src/intel/tools/aubinator.c index e2bec8f9494..139637cfefa 100644 --- a/src/intel/tools/aubinator.c +++ b/src/intel/tools/aubinator.c @@ -798,18 +798,17 @@ parse_commands(struct gen_spec *spec, uint32_t *cmds, int size, int engine) idx = 0; print_dword_val(&iter, offset, &dword_num); if (dword_num > 0) - token = print_iterator_values(&iter, &idx); + token = print_iterator_values(&iter, &idx); if (token != NULL) { - printf("0x%08"PRIx64": 0x%08x : Dword %d\n", - offset + 4 * idx, p[idx], idx); - handle_struct_decode(spec,token, &p[idx]); - token = NULL; + printf("0x%08"PRIx64": 0x%08x : Dword %d\n", + offset + 4 * idx, p[idx], idx); + handle_struct_decode(spec,token, &p[idx]); + token = NULL; } } 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); } } |