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/soc/qualcomm/ipq806x/include/soc/ipq_uart.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/qualcomm/ipq806x') diff --git a/src/soc/qualcomm/ipq806x/include/soc/ipq_uart.h b/src/soc/qualcomm/ipq806x/include/soc/ipq_uart.h index 5903652d25..a1db74def8 100644 --- a/src/soc/qualcomm/ipq806x/include/soc/ipq_uart.h +++ b/src/soc/qualcomm/ipq806x/include/soc/ipq_uart.h @@ -9,7 +9,7 @@ ((value << (32 - end_pos))\ >> (32 - (end_pos - start_pos))) -extern void __udelay(unsigned long usec); +void __udelay(unsigned long usec); enum MSM_BOOT_UART_DM_PARITY_MODE { MSM_BOOT_UART_DM_NO_PARITY, -- cgit v1.2.3