soc/intel: Remove invalid smm_relocate stubs
Remove the per-platform empty stubs, builds would just fail as there is no equivalent conditional for the smmrelocate.c file. Change-Id: Ie11f307b7bc5415bfdba6a2c66aed01b70d9f0e0 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34150 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
This commit is contained in:
parent
f08f266aa2
commit
eac7023f84
|
@ -50,7 +50,6 @@ struct smm_relocation_params {
|
|||
/* Mainboard handler for eSPI SMIs */
|
||||
void mainboard_smi_espi_handler(void);
|
||||
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase);
|
||||
void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
|
@ -58,14 +57,4 @@ void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
|||
void smm_initialize(void);
|
||||
void smm_relocate(void);
|
||||
|
||||
#else /* CONFIG_HAVE_SMI_HANDLER */
|
||||
static inline void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase) {}
|
||||
static inline void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
size_t *smm_save_state_size) {}
|
||||
static inline void smm_initialize(void) {}
|
||||
|
||||
static inline void smm_relocate(void) {}
|
||||
#endif /* CONFIG_HAVE_SMI_HANDLER */
|
||||
|
||||
#endif
|
||||
|
|
|
@ -49,7 +49,6 @@ struct smm_relocation_params {
|
|||
/* Mainboard handler for eSPI SMIs */
|
||||
void mainboard_smi_espi_handler(void);
|
||||
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase);
|
||||
void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
|
@ -57,14 +56,4 @@ void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
|||
void smm_initialize(void);
|
||||
void smm_relocate(void);
|
||||
|
||||
#else /* CONFIG_HAVE_SMI_HANDLER */
|
||||
static inline void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase) {}
|
||||
static inline void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
size_t *smm_save_state_size) {}
|
||||
static inline void smm_initialize(void) {}
|
||||
|
||||
static inline void smm_relocate(void) {}
|
||||
#endif /* CONFIG_HAVE_SMI_HANDLER */
|
||||
|
||||
#endif
|
||||
|
|
|
@ -48,21 +48,11 @@ struct smm_relocation_params {
|
|||
int smm_save_state_in_msrs;
|
||||
};
|
||||
|
||||
#if CONFIG(HAVE_SMI_HANDLER)
|
||||
void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase);
|
||||
void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
size_t *smm_save_state_size);
|
||||
void smm_initialize(void);
|
||||
void smm_relocate(void);
|
||||
#else /* CONFIG_HAVE_SMI_HANDLER */
|
||||
static inline void smm_relocation_handler(int cpu, uintptr_t curr_smbase,
|
||||
uintptr_t staggered_smbase) {}
|
||||
static inline void smm_info(uintptr_t *perm_smbase, size_t *perm_smsize,
|
||||
size_t *smm_save_state_size) {}
|
||||
static inline void smm_initialize(void) {}
|
||||
|
||||
static inline void smm_relocate(void) {}
|
||||
#endif /* CONFIG_HAVE_SMI_HANDLER */
|
||||
|
||||
#endif
|
||||
|
|
Loading…
Reference in New Issue