Kyösti Mälkki has submitted this change. ( https://review.coreboot.org/c/coreboot/+/69524 )
(
1 is the latest approved patch-set. No files were changed between the latest approved patch-set and the submitted one. )Change subject: mb/emulation/qemu-q35: Cleanup includes ......................................................................
mb/emulation/qemu-q35: Cleanup includes
Change-Id: Ib36d855e1dce8eb800bc077c1e444768c444fef8 Signed-off-by: Kyösti Mälkki kyosti.malkki@gmail.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/69524 Reviewed-by: Elyes Haouas ehaouas@noos.fr Reviewed-by: Arthur Heymans arthur@aheymans.xyz Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/mainboard/emulation/qemu-q35/cpu.c 1 file changed, 19 insertions(+), 4 deletions(-)
Approvals: build bot (Jenkins): Verified Elyes Haouas: Looks good to me, but someone else must approve Arthur Heymans: Looks good to me, approved
diff --git a/src/mainboard/emulation/qemu-q35/cpu.c b/src/mainboard/emulation/qemu-q35/cpu.c index 698cd9c..c84b756 100644 --- a/src/mainboard/emulation/qemu-q35/cpu.c +++ b/src/mainboard/emulation/qemu-q35/cpu.c @@ -1,13 +1,14 @@ /* SPDX-License-Identifier: GPL-2.0-only */
#include <console/console.h> +#include <cpu/amd/amd64_save_state.h> +#include <cpu/intel/smm_reloc.h> +#include <cpu/x86/legacy_save_state.h> #include <cpu/x86/mp.h> +#include <cpu/x86/smm.h> +#include <mainboard/emulation/qemu-i440fx/fw_cfg.h> #include <stddef.h> #include <stdint.h> -#include <cpu/intel/smm_reloc.h> -#include <cpu/amd/amd64_save_state.h> -#include <cpu/x86/legacy_save_state.h> -#include <mainboard/emulation/qemu-i440fx/fw_cfg.h>
static void get_smm_info(uintptr_t *perm_smbase, size_t *perm_smsize, size_t *smm_save_state_size)