diff options
author | Angel Pons <th3fanbus@gmail.com> | 2020-10-13 21:22:01 +0200 |
---|---|---|
committer | Angel Pons <th3fanbus@gmail.com> | 2020-10-23 20:27:21 +0000 |
commit | 7a957543b53c2c55b396fb0a7572a7955832ff56 (patch) | |
tree | 7b59d3735c7654a5d789c7dd3c1c0c978a19fa09 /src/soc | |
parent | 84275161a9c7c417c57b5403214d496e17fd66a4 (diff) |
soc/intel/broadwell/romstage/romstage.c: Clean up includes
Tested with BUILD_TIMELESS=1, Purism Librem 13 v1 remains identical.
Change-Id: Ibbffe152e511065dc265155555c56446fbb70405
Signed-off-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/46358
Reviewed-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-by: Nico Huber <nico.h@gmx.de>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/intel/broadwell/romstage/romstage.c | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/src/soc/intel/broadwell/romstage/romstage.c b/src/soc/intel/broadwell/romstage/romstage.c index 83e5b73836..2e5db76ce9 100644 --- a/src/soc/intel/broadwell/romstage/romstage.c +++ b/src/soc/intel/broadwell/romstage/romstage.c @@ -1,20 +1,17 @@ /* SPDX-License-Identifier: GPL-2.0-only */ -#include <stdint.h> +#include <acpi/acpi.h> #include <arch/romstage.h> -#include <cbmem.h> #include <console/console.h> -#include <cpu/x86/mtrr.h> #include <elog.h> -#include <program_loading.h> #include <romstage_handoff.h> -#include <timestamp.h> #include <soc/gpio.h> #include <soc/me.h> #include <soc/pei_data.h> #include <soc/pm.h> #include <soc/romstage.h> -#include <soc/spi.h> +#include <stdint.h> +#include <timestamp.h> /* Entry from cpu/intel/car/romstage.c. */ void mainboard_romstage_entry(void) |