diff options
author | Eric Engestrom <[email protected]> | 2018-08-16 15:37:22 +0100 |
---|---|---|
committer | Eric Engestrom <[email protected]> | 2018-08-16 17:38:31 +0100 |
commit | d6aea403267a96d9f840e308755e3c58315a70de (patch) | |
tree | c3b4a1a46f79c4500c3ca512ccf9a612960e32bd /src/intel | |
parent | 81c1989e4ff229d6fc49fab1c01eaab3d81432dc (diff) |
intel/batch-decoder: replace local ARRAY_LENGTH() macro with global ARRAY_SIZE()
Signed-off-by: Eric Engestrom <[email protected]>
Reviewed-by: Lionel Landwerlin <[email protected]>
Diffstat (limited to 'src/intel')
-rw-r--r-- | src/intel/common/gen_batch_decoder.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/intel/common/gen_batch_decoder.c b/src/intel/common/gen_batch_decoder.c index f5be0018afc..f93f4df0066 100644 --- a/src/intel/common/gen_batch_decoder.c +++ b/src/intel/common/gen_batch_decoder.c @@ -23,6 +23,7 @@ #include "common/gen_decoder.h" #include "gen_disasm.h" +#include "util/macros.h" #include <string.h> @@ -65,8 +66,6 @@ gen_batch_decode_ctx_finish(struct gen_batch_decode_ctx *ctx) #define GREEN_HEADER CSI "1;42m" #define NORMAL CSI "0m" -#define ARRAY_LENGTH(a) (sizeof (a) / sizeof (a)[0]) - static void ctx_print_group(struct gen_batch_decode_ctx *ctx, struct gen_group *group, @@ -835,7 +834,7 @@ gen_print_batch(struct gen_batch_decode_ctx *ctx, if (ctx->flags & GEN_BATCH_DECODE_FULL) { ctx_print_group(ctx, inst, offset, p); - for (int i = 0; i < ARRAY_LENGTH(custom_decoders); i++) { + for (int i = 0; i < ARRAY_SIZE(custom_decoders); i++) { if (strcmp(inst_name, custom_decoders[i].cmd_name) == 0) { custom_decoders[i].decode(ctx, p); break; |