Added comma to fix undefined bits struct member

This commit is contained in:
Kyle Wilson 2024-12-20 14:19:31 -06:00 committed by hartmannathan
parent bbd6931d61
commit e039fa039d

View file

@ -296,7 +296,7 @@ static struct imx_uart_s g_uart1priv =
.baud = CONFIG_UART1_BAUD, .baud = CONFIG_UART1_BAUD,
.irq = IMX_IRQ_UART1, .irq = IMX_IRQ_UART1,
.parity = CONFIG_UART1_PARITY, .parity = CONFIG_UART1_PARITY,
.lock = SP_UNLOCKED .lock = SP_UNLOCKED,
.bits = CONFIG_UART1_BITS, .bits = CONFIG_UART1_BITS,
.stopbits2 = CONFIG_UART1_2STOP, .stopbits2 = CONFIG_UART1_2STOP,
}; };