diff options
author | Elyes Haouas <ehaouas@noos.fr> | 2022-10-22 22:17:28 +0200 |
---|---|---|
committer | Martin Roth <martin.roth@amd.corp-partner.google.com> | 2022-10-25 16:26:51 +0000 |
commit | 8ed5835a1492070fb163ba79db892bd9c0df149e (patch) | |
tree | 5cf81c992a6322ebc3298512f84faf63bdd69758 /src/soc/intel/common/block/acpi | |
parent | cbbbb6c79d94ccc4b38913be74dc34ad1f365bac (diff) |
soc/intel/common: Clean up includes
Change-Id: I0081fcf3c842d8772a7045f8dc5754a2e6c039b8
Signed-off-by: Elyes Haouas <ehaouas@noos.fr>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/68702
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Frans Hendriks <fhendriks@eltan.com>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Diffstat (limited to 'src/soc/intel/common/block/acpi')
-rw-r--r-- | src/soc/intel/common/block/acpi/lpit.c | 1 | ||||
-rw-r--r-- | src/soc/intel/common/block/acpi/pep.c | 3 |
2 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/acpi/lpit.c b/src/soc/intel/common/block/acpi/lpit.c index 5b9689cead..38a402f13d 100644 --- a/src/soc/intel/common/block/acpi/lpit.c +++ b/src/soc/intel/common/block/acpi/lpit.c @@ -4,6 +4,7 @@ #include <cpu/intel/msr.h> #include <soc/iomap.h> #include <soc/pmc.h> +#include <stdint.h> unsigned long acpi_fill_lpit(unsigned long current) { diff --git a/src/soc/intel/common/block/acpi/pep.c b/src/soc/intel/common/block/acpi/pep.c index 21e3d35753..cd1030cb8e 100644 --- a/src/soc/intel/common/block/acpi/pep.c +++ b/src/soc/intel/common/block/acpi/pep.c @@ -1,11 +1,14 @@ /* SPDX-License-Identifier: GPL-2.0-or-later */ +#include <acpi/acpi.h> #include <acpi/acpigen.h> #include <assert.h> +#include <commonlib/bsd/helpers.h> #include <console/console.h> #include <intelblocks/acpi.h> #include <intelblocks/pmc_ipc.h> #include <stdlib.h> +#include <string.h> #include <types.h> #define LPI_S0_HELPER_UUID "c4eb40a0-6cd2-11e2-bcfd-0800200c9a66" |