Patrick Georgi has submitted this change. ( 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 Reviewed-on: https://review.coreboot.org/c/coreboot/+/50555 Tested-by: build bot (Jenkins) no-reply@coreboot.org Reviewed-by: Lance Zhao Reviewed-by: Kyösti Mälkki kyosti.malkki@gmail.com --- M src/acpi/acpi.c M src/acpi/acpigen.c 2 files changed, 2 insertions(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Kyösti Mälkki: Looks good to me, but someone else must approve Lance Zhao: Looks good to me, approved
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;