bsps/mips/include/libcpu/au1x00.h: Correct au_sync() prototype

GCC warns that ‘static’ is not at beginning of the function
declaration.
This commit is contained in:
Joel Sherrill
2025-07-10 16:47:41 -05:00
committed by Kinsey Moore
parent b8408fe39b
commit b934583853

View File

@@ -447,7 +447,7 @@ typedef struct {
extern au1x00_uart_t *uart0;
extern au1x00_uart_t *uart3;
void static inline au_sync(void)
static inline void au_sync(void)
{
__asm__ volatile ("sync");
}