From: Lukasz Czechowski Date: Tue, 20 May 2025 11:36:39 +0000 (+0200) Subject: arm: uniphier: Change _debug_uart_putc function to inline X-Git-Tag: v2025.07-rc4~5^2~15 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=79d9ac8b13e34f6e70af4f6a513afb8ebde29c98;p=thirdparty%2Fu-boot.git arm: uniphier: Change _debug_uart_putc function to inline Update the definition of _debug_uart_putc to static inline. This matches the instructions in include/debug_uart.h and provides consistency with implementations for other platforms. Signed-off-by: Lukasz Czechowski Reviewed-by: Tom Rini Reviewed-by: Kever Yang --- diff --git a/arch/arm/mach-uniphier/debug-uart/debug-uart.c b/arch/arm/mach-uniphier/debug-uart/debug-uart.c index 6836eb63bfa..1a3e290aa97 100644 --- a/arch/arm/mach-uniphier/debug-uart/debug-uart.c +++ b/arch/arm/mach-uniphier/debug-uart/debug-uart.c @@ -16,7 +16,7 @@ #define UNIPHIER_UART_LSR 0x14 #define UNIPHIER_UART_LDR 0x24 -static void _debug_uart_putc(int c) +static inline void _debug_uart_putc(int c) { void __iomem *base = (void __iomem *)CONFIG_VAL(DEBUG_UART_BASE);