summaryrefslogtreecommitdiffstats
path: root/src/lib/hardwaremain.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-11-17 16:41:38 +0200
committerFelix Held <felix-coreboot@felixheld.de>2020-11-19 14:48:31 +0000
commitb8c7ea0f697110aae87d1cbd345ffdeab08e8623 (patch)
tree1ecfd7f54473e7b5acd6fa796c3e297209ea9d12 /src/lib/hardwaremain.c
parent67a2507c78bbad898e7ee1dbc789c6f3f076b1dd (diff)
downloadcoreboot-b8c7ea0f697110aae87d1cbd345ffdeab08e8623.tar.gz
coreboot-b8c7ea0f697110aae87d1cbd345ffdeab08e8623.tar.bz2
coreboot-b8c7ea0f697110aae87d1cbd345ffdeab08e8623.zip
ACPI S3: Replace acpi_is_wakeup()
It was supposed to return true for both S2 and S3, but level S2 was never stored in acpi_slp_type or otherwise implemented. Change-Id: Ida0165e647545069c0d42d38b9f45a95e78dacbe Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47693 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/lib/hardwaremain.c')
-rw-r--r--src/lib/hardwaremain.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/hardwaremain.c b/src/lib/hardwaremain.c
index 3fe50c9bb643..173ee9719223 100644
--- a/src/lib/hardwaremain.c
+++ b/src/lib/hardwaremain.c
@@ -444,7 +444,7 @@ void main(void)
post_code(POST_ENTRY_RAMSTAGE);
/* Handoff sleep type from romstage. */
- acpi_is_wakeup();
+ acpi_is_wakeup_s3();
threads_initialize();
/* Schedule the static boot state entries. */