HAOUAS Elyes has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/50555 )
Change subject: src/acpi: Add missing <types.h> ......................................................................
src/acpi: Add missing <types.h>
Change-Id: Iec78183b43ea26d9de14e0ce28eef6fc0361cc95 Signed-off-by: Elyes HAOUAS ehaouas@noos.fr --- M src/acpi/acpi.c M src/acpi/acpigen.c 2 files changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/50555/1
diff --git a/src/acpi/acpi.c b/src/acpi/acpi.c index fc13689..867e163 100644 --- a/src/acpi/acpi.c +++ b/src/acpi/acpi.c @@ -23,6 +23,7 @@ #include <commonlib/helpers.h> #include <cpu/cpu.h> #include <cbfs.h> +#include <types.h> #include <version.h> #include <commonlib/sort.h>
diff --git a/src/acpi/acpigen.c b/src/acpi/acpigen.c index 5cc6a4e..4d9395f 100644 --- a/src/acpi/acpigen.c +++ b/src/acpi/acpigen.c @@ -21,6 +21,7 @@ #include <device/pci_def.h> #include <device/pci_type.h> #include <device/soundwire.h> +#include <types.h>
static char *gencurrent;