diff options
Diffstat (limited to 'src/mainboard/google')
-rw-r--r-- | src/mainboard/google/cyan/ec.c | 2 | ||||
-rw-r--r-- | src/mainboard/google/ninja/ec.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/mainboard/google/cyan/ec.c b/src/mainboard/google/cyan/ec.c index 8f516cb7da..cce7d705e1 100644 --- a/src/mainboard/google/cyan/ec.c +++ b/src/mainboard/google/cyan/ec.c @@ -28,7 +28,7 @@ void mainboard_ec_init(void) #if IS_ENABLED(CONFIG_EC_GOOGLE_CHROMEEC) /* Restore SCI event mask on resume. */ - if (acpi_slp_type == 3) { + if (acpi_is_wakeup_s3()) { google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS | MAINBOARD_EC_S3_WAKE_EVENTS); diff --git a/src/mainboard/google/ninja/ec.c b/src/mainboard/google/ninja/ec.c index 994b211a03..147cded0e9 100644 --- a/src/mainboard/google/ninja/ec.c +++ b/src/mainboard/google/ninja/ec.c @@ -26,7 +26,7 @@ void mainboard_ec_init(void) post_code(0xf0); /* Restore SCI event mask on resume. */ - if (acpi_slp_type == 3) { + if (acpi_is_wakeup_s3()) { google_chromeec_log_events(MAINBOARD_EC_LOG_EVENTS | MAINBOARD_EC_S3_WAKE_EVENTS); |