From c45f627de4a17d4be6727cbf357e7fb54479a563 Mon Sep 17 00:00:00 2001 From: Soby Mathew Date: Wed, 20 Jul 2016 14:38:36 +0100 Subject: Move SIZE_FROM_LOG2_WORDS macro to utils.h This patch moves the macro SIZE_FROM_LOG2_WORDS() defined in `arch.h` to `utils.h` as it is utility macro. Change-Id: Ia8171a226978f053a1ee4037f80142c0a4d21430 --- include/lib/utils.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'include/lib/utils.h') diff --git a/include/lib/utils.h b/include/lib/utils.h index 0936cbb3..a234e3c9 100644 --- a/include/lib/utils.h +++ b/include/lib/utils.h @@ -38,6 +38,8 @@ #define IS_POWER_OF_TWO(x) \ (((x) & ((x) - 1)) == 0) +#define SIZE_FROM_LOG2_WORDS(n) (4 << (n)) + /* * The round_up() macro rounds up a value to the given boundary in a * type-agnostic yet type-safe manner. The boundary must be a power of two. -- cgit v1.2.3