From 3813ca521a6cd7348ce111c3f46cbee66a1b964d Mon Sep 17 00:00:00 2001 From: Elyes Haouas Date: Sat, 14 Jan 2023 07:30:21 +0100 Subject: treewide: Remove 'extern' from functions declaration MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit "extern" is automatically implied with function declaration. Change-Id: Ic40218acab5a009621b6882faacfcac800aaf0b9 Signed-off-by: Elyes Haouas Reviewed-on: https://review.coreboot.org/c/coreboot/+/71890 Reviewed-by: Kyösti Mälkki Tested-by: build bot (Jenkins) Reviewed-by: Yu-Ping Wu --- src/arch/x86/include/arch/interrupt.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/arch/x86/include') diff --git a/src/arch/x86/include/arch/interrupt.h b/src/arch/x86/include/arch/interrupt.h index a4a80f1da7..3ed711a74d 100644 --- a/src/arch/x86/include/arch/interrupt.h +++ b/src/arch/x86/include/arch/interrupt.h @@ -7,7 +7,7 @@ /* setup interrupt handlers for mainboard */ #if CONFIG(PCI_OPTION_ROM_RUN_REALMODE) -extern void mainboard_interrupt_handlers(int intXX, int (*intXX_func)(void)); +void mainboard_interrupt_handlers(int intXX, int (*intXX_func)(void)); #elif CONFIG(PCI_OPTION_ROM_RUN_YABEL) #include #else -- cgit v1.2.3