aboutsummaryrefslogtreecommitdiff
path: root/src/mainboard/amd/parmer/mainboard.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainboard/amd/parmer/mainboard.c')
-rw-r--r--src/mainboard/amd/parmer/mainboard.c10
1 files changed, 2 insertions, 8 deletions
diff --git a/src/mainboard/amd/parmer/mainboard.c b/src/mainboard/amd/parmer/mainboard.c
index 8aa76ffb0e..214cb21368 100644
--- a/src/mainboard/amd/parmer/mainboard.c
+++ b/src/mainboard/amd/parmer/mainboard.c
@@ -35,15 +35,9 @@
static void mainboard_enable(device_t dev)
{
printk(BIOS_INFO, "Mainboard " CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
- /*
- * The mainboard is the first place that we get control in ramstage. Check
- * for S3 resume and call the appropriate AGESA/CIMx resume functions.
- */
-#if CONFIG_HAVE_ACPI_RESUME
- acpi_slp_type = acpi_get_sleep_type();
- if (acpi_slp_type == 3)
+
+ if (acpi_is_wakeup_s3())
agesawrapper_fchs3earlyrestore();
-#endif
}
struct chip_operations mainboard_ops = {