summaryrefslogtreecommitdiff
path: root/src/mainboard/google/stout/mainboard_smi.c
diff options
context:
space:
mode:
authorVladimir Serbinenko <phcoder@gmail.com>2015-05-16 13:33:49 +0200
committerVladimir Serbinenko <phcoder@gmail.com>2015-05-16 15:59:42 +0200
commit3026e473dafa1d06f69f44fda19aab75fb15ed8a (patch)
tree5d77c2ce58113d438aeb9e7af9c689f56a49f12d /src/mainboard/google/stout/mainboard_smi.c
parent5b667df135dc4736f87d0650cc64b2c052bc9b73 (diff)
downloadcoreboot-3026e473dafa1d06f69f44fda19aab75fb15ed8a.tar.xz
Remove defines APMC_FINALIZE.
We already have APM_CNT_FINALIZE defined to the same value. Just use it thoughout. Change-Id: Ife94ec7a34da27d3a720bda7337c02e41f18ac72 Signed-off-by: Vladimir Serbinenko <phcoder@gmail.com> Reviewed-on: http://review.coreboot.org/10226 Tested-by: build bot (Jenkins) Reviewed-by: Nicolas Reinecke <nr@das-labor.org>
Diffstat (limited to 'src/mainboard/google/stout/mainboard_smi.c')
-rw-r--r--src/mainboard/google/stout/mainboard_smi.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainboard/google/stout/mainboard_smi.c b/src/mainboard/google/stout/mainboard_smi.c
index 7ab3cc5014..c44e9311e8 100644
--- a/src/mainboard/google/stout/mainboard_smi.c
+++ b/src/mainboard/google/stout/mainboard_smi.c
@@ -110,7 +110,6 @@ void mainboard_smi_sleep(u8 slp_typ)
ec_it8518_enable_wake_events();
}
-#define APMC_FINALIZE 0xcb
#define APMC_ACPI_EN 0xe1
#define APMC_ACPI_DIS 0x1e
@@ -119,7 +118,7 @@ static int mainboard_finalized = 0;
int mainboard_smi_apmc(u8 apmc)
{
switch (apmc) {
- case APMC_FINALIZE:
+ case APM_CNT_FINALIZE:
if (mainboard_finalized) {
printk(BIOS_DEBUG, "SMI#: Already finalized\n");
return 0;