From 245c0ec75563e6f060de18aa01000918f60e7fff Mon Sep 17 00:00:00 2001 From: Alyssa Rosenzweig Date: Fri, 23 Jul 2021 12:03:11 -0400 Subject: [PATCH] pan/bi: Fix typo in FAU enum Signed-off-by: Alyssa Rosenzweig Part-of: --- src/panfrost/bifrost/compiler.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/panfrost/bifrost/compiler.h b/src/panfrost/bifrost/compiler.h index c1ac907678f..f9838150bff 100644 --- a/src/panfrost/bifrost/compiler.h +++ b/src/panfrost/bifrost/compiler.h @@ -603,7 +603,7 @@ bi_remove_instruction(bi_instr *ins) enum bir_fau { BIR_FAU_ZERO = 0, BIR_FAU_LANE_ID = 1, - BIR_FAU_WRAP_ID = 2, + BIR_FAU_WARP_ID = 2, BIR_FAU_CORE_ID = 3, BIR_FAU_FB_EXTENT = 4, BIR_FAU_ATEST_PARAM = 5,