diff options
author | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-10 15:32:03 +0300 |
---|---|---|
committer | Kyösti Mälkki <kyosti.malkki@gmail.com> | 2019-08-13 14:00:06 +0000 |
commit | 1ef039bb4965213c87b844ca30482853fb86b418 (patch) | |
tree | 444e9b959f2ea4afee59a4abe772963d4d6c9d5b /src/southbridge/intel/common/smihandler.c | |
parent | c4fdb7b923f82e31a687fc01f7176ad05ab51689 (diff) |
cpu/x86: Change old-style SMI handler prototypes
Change-Id: Ic1e3cae5298997b552020b78e6ff56d60cf22036
Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/34821
Reviewed-by: Arthur Heymans <arthur@aheymans.xyz>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/southbridge/intel/common/smihandler.c')
-rw-r--r-- | src/southbridge/intel/common/smihandler.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/src/southbridge/intel/common/smihandler.c b/src/southbridge/intel/common/smihandler.c index 597f1a7421..daa0959e3b 100644 --- a/src/southbridge/intel/common/smihandler.c +++ b/src/southbridge/intel/common/smihandler.c @@ -23,7 +23,6 @@ #include <device/pci_def.h> #include <cpu/x86/smm.h> #include <cpu/intel/em64t101_save_state.h> -#include <cpu/x86/smi_deprecated.h> #include <elog.h> #include <halt.h> #include <pc80/mc146818rtc.h> @@ -477,14 +476,8 @@ static smi_handler_t southbridge_smi[32] = { /** * @brief Interrupt handler for SMI# - * @param node - * @param state_save */ -#if CONFIG(SMM_TSEG) void southbridge_smi_handler(void) -#else -void cpu_smi_handler(unsigned int node, smm_state_save_area_t *state_save) -#endif { int i, dump = 0; u32 smi_sts; |