From a488b86e97df2bf188938f01fb484aa420298fef Mon Sep 17 00:00:00 2001
From: bunnei <bunneidev@gmail.com>
Date: Tue, 4 May 2021 20:53:45 -0700
Subject: [PATCH] fixup! common: bit_util: Add BIT macro.

---
 src/common/bit_util.h | 2 --
 1 file changed, 2 deletions(-)

diff --git a/src/common/bit_util.h b/src/common/bit_util.h
index 683f09158..64520ca4e 100644
--- a/src/common/bit_util.h
+++ b/src/common/bit_util.h
@@ -44,6 +44,4 @@ template <typename T>
     return static_cast<u32>(log2_f + static_cast<u64>((value ^ (1ULL << log2_f)) != 0ULL));
 }
 
-#define BIT(n) (1U << (n))
-
 } // namespace Common