From fd0d1f2fba60c7cd1ce052ab5c9f7cc5b1b280e2 Mon Sep 17 00:00:00 2001 From: Jinliang Li Date: Fri, 9 Aug 2024 20:33:18 +0800 Subject: [PATCH] serial/uart_16550: include stdint.h in uart_16550.h stdint.h is needed in uart_16550.h for some types, e.g. uint32_t, uintptr_t. Otherwise there will be building issue unless that stdint.h is added before uart_16550.h by all files which needs uart_16550.h. Signed-off-by: Jinliang Li --- include/nuttx/serial/uart_16550.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/nuttx/serial/uart_16550.h b/include/nuttx/serial/uart_16550.h index 8c4318f4bd31b..32e95759d82e9 100644 --- a/include/nuttx/serial/uart_16550.h +++ b/include/nuttx/serial/uart_16550.h @@ -27,6 +27,7 @@ ****************************************************************************/ #include +#include #ifdef CONFIG_16550_UART