aboutsummaryrefslogtreecommitdiff
path: root/src/acpi/acpi_pm.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/acpi/acpi_pm.c')
-rw-r--r--src/acpi/acpi_pm.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/src/acpi/acpi_pm.c b/src/acpi/acpi_pm.c
index 540b6d2bee..c1e99962a9 100644
--- a/src/acpi/acpi_pm.c
+++ b/src/acpi/acpi_pm.c
@@ -1,32 +1,8 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <acpi/acpi.h>
-#include <console/console.h>
-#include <romstage_handoff.h>
#include <smbios.h>
-/* This is filled with acpi_handoff_wakeup_s3() call early in ramstage. */
-static int acpi_slp_type = -1;
-
-static void acpi_handoff_wakeup(void)
-{
- if (acpi_slp_type < 0) {
- if (romstage_handoff_is_resume()) {
- printk(BIOS_DEBUG, "S3 Resume\n");
- acpi_slp_type = ACPI_S3;
- } else {
- printk(BIOS_DEBUG, "Normal boot\n");
- acpi_slp_type = ACPI_S0;
- }
- }
-}
-
-int acpi_handoff_wakeup_s3(void)
-{
- acpi_handoff_wakeup();
- return (acpi_slp_type == ACPI_S3);
-}
-
void __weak mainboard_suspend_resume(void)
{
}