diff options
author | Aaron Durbin <adurbin@chromium.org> | 2017-05-05 15:44:20 -0500 |
---|---|---|
committer | Aaron Durbin <adurbin@chromium.org> | 2017-05-08 06:10:25 +0200 |
commit | 5c48b7e9f2d0249b07a673b4531a4781dd088616 (patch) | |
tree | 9ff2e6a81fe8a88eb9b5892bc0e63c00a11f0179 /src/soc/intel/skylake/include | |
parent | d06e06c36feef6494694d34800fa0706f6c4ff11 (diff) | |
download | coreboot-5c48b7e9f2d0249b07a673b4531a4781dd088616.tar.gz coreboot-5c48b7e9f2d0249b07a673b4531a4781dd088616.tar.bz2 coreboot-5c48b7e9f2d0249b07a673b4531a4781dd088616.zip |
soc/intel/skylake: remove unused SMI functions
The southbridge_trigger_smi() and southbridge_clear_smi_status()
functions are unused. Remove them.
Change-Id: I86994191a63cbf515bc330433ef7c3f79a39936e
Signed-off-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-on: https://review.coreboot.org/19598
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Philippe Mathieu-Daudé <philippe.mathieu.daude@gmail.com>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/soc/intel/skylake/include')
-rw-r--r-- | src/soc/intel/skylake/include/soc/smm.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/soc/intel/skylake/include/soc/smm.h b/src/soc/intel/skylake/include/soc/smm.h index 71083b3cbf38..6ba6fdb72cfa 100644 --- a/src/soc/intel/skylake/include/soc/smm.h +++ b/src/soc/intel/skylake/include/soc/smm.h @@ -61,10 +61,6 @@ void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize, void smm_initialize(void); void smm_relocate(void); -/* These helpers are for performing SMM relocation. */ -void southbridge_trigger_smi(void); -void southbridge_clear_smi_status(void); - /* * The initialization of the southbridge is split into 2 compoments. One is * for clearing the state in the SMM registers. The other is for enabling @@ -80,8 +76,6 @@ static inline void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize, static inline void smm_initialize(void) {} static inline void smm_relocate(void) {} -static inline void southbridge_trigger_smi(void) {} -static inline void southbridge_clear_smi_status(void) {} static inline void southbridge_smm_clear_state(void) {} static inline void southbridge_smm_enable_smi(void) {} #endif /* CONFIG_HAVE_SMI_HANDLER */ |