diff options
author | Raul E Rangel <rrangel@chromium.org> | 2021-11-05 16:58:12 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-11-08 15:11:35 +0000 |
commit | a3b290732dd1f06c5b16228c9a11529e1b43372e (patch) | |
tree | 87f7247ba20f8d6bda01a36bfd753584be8eecc6 | |
parent | dcd8114359c6c3033bf8268e800a053a0020ef29 (diff) |
lib/thread: Switch to using types.h
thread_mutex uses bool.
BUG=b:179699789
TEST=Build guybrush
Signed-off-by: Raul E Rangel <rrangel@chromium.org>
Change-Id: Id26b37d3e38852d72fcb6ff07ed578b0879e55dd
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58990
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Reviewed-by: Rob Barnes <robbarnes@google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r-- | src/include/thread.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/thread.h b/src/include/thread.h index 62c6283acf..19b69fa30d 100644 --- a/src/include/thread.h +++ b/src/include/thread.h @@ -5,7 +5,7 @@ #include <arch/cpu.h> #include <bootstate.h> #include <commonlib/bsd/cb_err.h> -#include <stdint.h> +#include <types.h> struct thread_mutex { bool locked; |