diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-16 20:34:25 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-22 02:50:35 +0000 |
commit | a963acdcc70747911981afcd1474d39d75ca8804 (patch) | |
tree | 57f67998627e588d8523497172512dba7b0032fb /src/mainboard/emulation | |
parent | 9ede2ffee845d243d8e1515effbc206152fbc7fd (diff) |
arch/x86: Add <arch/romstage.h>
Start with moving all postcar_frame related function
declarations here from <arch/cpu.h>.
Change-Id: I9aeef07f9009e44cc08927c85fe1862edf5c70dc
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34911
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: HAOUAS Elyes <ehaouas@noos.fr>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/mainboard/emulation')
-rw-r--r-- | src/mainboard/emulation/qemu-i440fx/romstage.c | 2 | ||||
-rw-r--r-- | src/mainboard/emulation/qemu-q35/romstage.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/emulation/qemu-i440fx/romstage.c b/src/mainboard/emulation/qemu-i440fx/romstage.c index 6b1883ccbd..32eab3de3a 100644 --- a/src/mainboard/emulation/qemu-i440fx/romstage.c +++ b/src/mainboard/emulation/qemu-i440fx/romstage.c @@ -15,10 +15,10 @@ */ #include <arch/cpu.h> +#include <arch/romstage.h> #include <stdint.h> #include <cbmem.h> #include <console/console.h> -#include <cpu/intel/romstage.h> #include <timestamp.h> #include <program_loading.h> diff --git a/src/mainboard/emulation/qemu-q35/romstage.c b/src/mainboard/emulation/qemu-q35/romstage.c index dbaead982a..6cd9ee4123 100644 --- a/src/mainboard/emulation/qemu-q35/romstage.c +++ b/src/mainboard/emulation/qemu-q35/romstage.c @@ -15,10 +15,10 @@ */ #include <arch/cpu.h> +#include <arch/romstage.h> #include <stdint.h> #include <cbmem.h> #include <console/console.h> -#include <cpu/intel/romstage.h> #include <timestamp.h> #include <southbridge/intel/i82801ix/i82801ix.h> #include <program_loading.h> |