From 0fddb714787668dfe8a02723979a505e9473fff9 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 8c4318f4bd3..32e95759d82 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