Felix Held has submitted this change. ( https://review.coreboot.org/c/coreboot/+/58990 )
Change subject: lib/thread: Switch to using types.h ......................................................................
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 --- M src/include/thread.h 1 file changed, 1 insertion(+), 1 deletion(-)
Approvals: build bot (Jenkins): Verified Felix Held: Looks good to me, approved Rob Barnes: Looks good to me, approved
diff --git a/src/include/thread.h b/src/include/thread.h index 62c6283..19b69fa 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;