From 47348db7e82306a37799a7fe814656902e52e771 Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Tue, 22 Dec 2020 15:38:33 -0500 Subject: [PATCH] pan/bi: Use enum bifrost_message_type Signed-off-by: Alyssa Rosenzweig Reviewed-by: Boris Brezillon Part-of: --- src/panfrost/bifrost/compiler.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/panfrost/bifrost/compiler.h b/src/panfrost/bifrost/compiler.h index f3d71bcb6ad..8fd85839ef0 100644 --- a/src/panfrost/bifrost/compiler.h +++ b/src/panfrost/bifrost/compiler.h @@ -460,8 +460,8 @@ typedef struct { */ bool branch_constant; - /* What type of high latency instruction is here, basically */ - unsigned message_type; + /* Unique in a clause */ + enum bifrost_message_type message_type; } bi_clause; typedef struct bi_block {