From d99ff72fa9907c6bd0808e41a8fce9db38c8edae Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Fri, 20 Sep 2019 14:07:50 -0600 Subject: [PATCH] Fix SMMSTORE compilation in QEMU target --- src/southbridge/intel/common/smihandler.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/southbridge/intel/common/smihandler.c b/src/southbridge/intel/common/smihandler.c index 2eb66d62c3..1479572452 100644 --- a/src/southbridge/intel/common/smihandler.c +++ b/src/southbridge/intel/common/smihandler.c @@ -343,7 +343,7 @@ static void southbridge_smi_apmc(void) break; #endif case APM_CNT_SMMSTORE: - if (IS_ENABLED(CONFIG_SMMSTORE)) + if (CONFIG(SMMSTORE)) southbridge_smi_store(); break; }