diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2022-11-14 17:41:13 +0200 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2022-11-17 07:43:15 +0000 |
commit | 95932ba9b7bb1ad1f81cb4a5d16b9fd9c203b254 (patch) | |
tree | 9c63428a15583b7f143bb81baedad6f43957af8e /src/cpu | |
parent | 2e19aa153a2eeea8f929e325649cb2f3edd7a5e6 (diff) |
sb/intel/common: Drop duplicate smi_set_eos()
We have equivalent southbridge_smi_set_eos().
Change-Id: I03a48f0ec9efac2a220aa4ca502a5f504d78c585
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/69668
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Diffstat (limited to 'src/cpu')
-rw-r--r-- | src/cpu/x86/smm/smm_module_handler.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/cpu/x86/smm/smm_module_handler.c b/src/cpu/x86/smm/smm_module_handler.c index e813f786e6..32f66af190 100644 --- a/src/cpu/x86/smm/smm_module_handler.c +++ b/src/cpu/x86/smm/smm_module_handler.c @@ -74,14 +74,6 @@ void io_trap_handler(int smif) printk(BIOS_DEBUG, "Unknown function\n"); } -/** - * @brief Set the EOS bit - */ -static void smi_set_eos(void) -{ - southbridge_smi_set_eos(); -} - static u32 pci_orig; /** @@ -196,7 +188,7 @@ asmlinkage void smm_handler_start(void *arg) smi_release_lock(); /* De-assert SMI# signal to allow another SMI */ - smi_set_eos(); + southbridge_smi_set_eos(); } RMODULE_ENTRY(smm_handler_start); |