diff options
author | Furquan Shaikh <furquan@google.com> | 2021-01-19 22:13:59 -0800 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2021-01-22 14:26:58 +0000 |
commit | 197c486997130e7f1510aac3f0af90f35b50c9d2 (patch) | |
tree | 2a2ebd2d4ea92916924e8dfd204fe9272c13497e | |
parent | b5df56f6f20d075a86267cc3a00f2ff818ea1bc2 (diff) |
types.h: Add a helper macro BITS_PER_BYTE
This change adds a helper macro `BITS_PER_BYTE` so that it doesn't
have to be defined in multiple places.
Change-Id: Idc344047a5660791eaeb1ce8012910c11f6010ba
Signed-off-by: Furquan Shaikh <furquan@google.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/49736
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: EricR Lai <ericr_lai@compal.corp-partner.google.com>
Reviewed-by: Tim Wawrzynczak <twawrzynczak@chromium.org>
-rw-r--r-- | src/include/types.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/include/types.h b/src/include/types.h index 2d10ae483a..cbdb67a0ca 100644 --- a/src/include/types.h +++ b/src/include/types.h @@ -18,4 +18,6 @@ #define BIT(x) (1ul << (x)) #endif +#define BITS_PER_BYTE 8 + #endif /* __TYPES_H */ |