Patrick Georgi has submitted this change. ( https://review.coreboot.org/c/coreboot/+/43704 )
Change subject: src/acpi/device.c: Add include <types.h> ......................................................................
src/acpi/device.c: Add include <types.h>
BIT(x) needs <types.h>.
Change-Id: I1a7c5e15468b76e29aa32169fd8ca10445c2eff2 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr Reviewed-on: https://review.coreboot.org/c/coreboot/+/43704 Reviewed-by: Angel Pons th3fanbus@gmail.com Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/acpi/device.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Angel Pons: Looks good to me, approved
diff --git a/src/acpi/device.c b/src/acpi/device.c index b119abd..07e80f5 100644 --- a/src/acpi/device.c +++ b/src/acpi/device.c @@ -8,6 +8,7 @@ #include <device/device.h> #include <device/path.h> #include <stdlib.h> +#include <types.h> #include <crc_byte.h>
#if CONFIG(GENERIC_GPIO_LIB)