diff options
author | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-16 13:33:49 +0200 |
---|---|---|
committer | Vladimir Serbinenko <phcoder@gmail.com> | 2015-05-16 15:59:42 +0200 |
commit | 3026e473dafa1d06f69f44fda19aab75fb15ed8a (patch) | |
tree | 5d77c2ce58113d438aeb9e7af9c689f56a49f12d /src/mainboard/google/slippy/smihandler.c | |
parent | 5b667df135dc4736f87d0650cc64b2c052bc9b73 (diff) |
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/slippy/smihandler.c')
-rw-r--r-- | src/mainboard/google/slippy/smihandler.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/mainboard/google/slippy/smihandler.c b/src/mainboard/google/slippy/smihandler.c index f8eac31699..7643fb1897 100644 --- a/src/mainboard/google/slippy/smihandler.c +++ b/src/mainboard/google/slippy/smihandler.c @@ -121,14 +121,13 @@ void mainboard_smi_sleep(u8 slp_typ) while (google_chromeec_get_event() != 0); } -#define APMC_FINALIZE 0xcb 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; |