drivers/serial/uart_16550.c: Fix typo for UART1 flow field initialization

This commit is contained in:
Gregory Nutt 2019-01-27 10:56:23 -06:00
parent 4ed591355b
commit 7310fb7018
1 changed files with 1 additions and 1 deletions

View File

@ -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