aboutsummaryrefslogtreecommitdiff
path: root/src/cpu/x86/smm
diff options
context:
space:
mode:
authorElyes HAOUAS <ehaouas@noos.fr>2022-01-25 11:51:43 +0100
committerFelix Held <felix-coreboot@felixheld.de>2022-01-26 23:57:12 +0000
commiteb9e63f21f44598027105a641fd72c67c44e7a7d (patch)
treeb479d526143ec466c5f041fc7cac07294a066cdc /src/cpu/x86/smm
parent98d76cb7080dc5d0ed8350285c1f0f24fab59d12 (diff)
src: Add missing 'void' in function definition
Change-Id: I7fa1f9402b177a036f08bf99c98a6191c35fa0b5 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/61371 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jason Glenesk <jason.glenesk@gmail.com> Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
Diffstat (limited to 'src/cpu/x86/smm')
-rw-r--r--src/cpu/x86/smm/smm_module_handler.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/x86/smm/smm_module_handler.c b/src/cpu/x86/smm/smm_module_handler.c
index f9ebba4e32..cab691d974 100644
--- a/src/cpu/x86/smm/smm_module_handler.c
+++ b/src/cpu/x86/smm/smm_module_handler.c
@@ -193,8 +193,8 @@ RMODULE_ENTRY(smm_handler_start);
* are linked at. */
int __weak mainboard_io_trap_handler(int smif) { return 0; }
void __weak cpu_smi_handler(void) {}
-void __weak northbridge_smi_handler() {}
-void __weak southbridge_smi_handler() {}
+void __weak northbridge_smi_handler(void) {}
+void __weak southbridge_smi_handler(void) {}
void __weak mainboard_smi_gpi(u32 gpi_sts) {}
int __weak mainboard_smi_apmc(u8 data) { return 0; }
void __weak mainboard_smi_sleep(u8 slp_typ) {}