soc/amd,intel: Drop s3_resume parameter on FSP-S functions

ACPI S3 is a global state and it is no longer needed to
pass it as a parameter.

Change-Id: Id0639a47ea65c210b9a79e6ca89cee819e7769b1
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/50360
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
This commit is contained in:
Kyösti Mälkki
2021-01-09 22:53:52 +02:00
committed by Patrick Georgi
parent 4949a3dd62
commit cc93c6e474
25 changed files with 29 additions and 48 deletions

View File

@ -19,7 +19,6 @@
#include <intelblocks/cpulib.h>
#include <intelblocks/mp_init.h>
#include <intelblocks/msr.h>
#include <romstage_handoff.h>
#include <soc/cpu.h>
#include <soc/msr.h>
#include <soc/pci_devs.h>
@ -27,7 +26,7 @@
static void soc_fsp_load(void)
{
fsps_load(romstage_handoff_is_resume());
fsps_load();
}
static void configure_misc(void)