From 7310fb70187ec95786def417ef1ec501b6c31263 Mon Sep 17 00:00:00 2001 From: Gregory Nutt Date: Sun, 27 Jan 2019 10:56:23 -0600 Subject: [PATCH] drivers/serial/uart_16550.c: Fix typo for UART1 flow field initialization --- drivers/serial/uart_16550.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/serial/uart_16550.c b/drivers/serial/uart_16550.c index 0e2217cf30b..a2f8a9216f2 100644 --- a/drivers/serial/uart_16550.c +++ b/drivers/serial/uart_16550.c @@ -215,7 +215,7 @@ static struct u16550_s g_uart1priv = .parity = CONFIG_16550_UART1_PARITY, .bits = CONFIG_16550_UART1_BITS, .stopbits2 = CONFIG_16550_UART1_2STOP, -#if defined(CONFIG_16550_UART1_IFLOWCONTROL) || defined(CONFIG_16551_UART1_OFLOWCONTROL) +#if defined(CONFIG_16550_UART1_IFLOWCONTROL) || defined(CONFIG_16550_UART1_OFLOWCONTROL) .flow = true, #endif #endif