summaryrefslogtreecommitdiff
path: root/src/mainboard/google/stout
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2020-06-27 14:25:20 +0300
committerPatrick Georgi <pgeorgi@google.com>2020-06-30 05:42:26 +0000
commitd4174b5f0275ac600eafe6d8965f3bd44c4b15cc (patch)
treea13f3410012d8e800c2d8646c1c0f9c5303ba721 /src/mainboard/google/stout
parent07a4e56e7568720d561cfd788cc342a3901a6628 (diff)
downloadcoreboot-d4174b5f0275ac600eafe6d8965f3bd44c4b15cc.tar.xz
mb/google: Drop aliases for APM_CNT_ACPI_xx
Use defines found in <cpu/x86/smm.h>. Change-Id: Ib75df13021120fb2c056782c252e97d6b036c7da Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/42848 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/mainboard/google/stout')
-rw-r--r--src/mainboard/google/stout/mainboard_smi.c7
1 files changed, 2 insertions, 5 deletions
diff --git a/src/mainboard/google/stout/mainboard_smi.c b/src/mainboard/google/stout/mainboard_smi.c
index 9c2aff8217..cf7fcaea65 100644
--- a/src/mainboard/google/stout/mainboard_smi.c
+++ b/src/mainboard/google/stout/mainboard_smi.c
@@ -70,22 +70,19 @@ void mainboard_smi_sleep(u8 slp_typ)
ec_it8518_enable_wake_events();
}
-#define APMC_ACPI_EN 0xe1
-#define APMC_ACPI_DIS 0x1e
-
int mainboard_smi_apmc(u8 apmc)
{
switch (apmc) {
case APM_CNT_FINALIZE:
stout_ec_finalize_smm();
break;
- case APMC_ACPI_EN:
+ case APM_CNT_ACPI_ENABLE:
/*
* TODO(kimarie) Clear all pending events and enable SCI.
*/
ec_write_cmd(EC_CMD_NOTIFY_ACPI_ENTER);
break;
- case APMC_ACPI_DIS:
+ case APM_CNT_ACPI_DISABLE:
/*
* TODO(kimarie) Clear all pending events and enable SMI.
*/