mirror of
https://github.com/apache/nuttx.git
synced 2026-08-07 21:47:17 +00:00
Merged in rnouse/nuttx (pull request #6)
[drivers/serial/uart_16550] Typo fix in data bits setup
This commit is contained in:
commit
3bc46d9aad
1 changed files with 3 additions and 3 deletions
|
|
@ -590,11 +590,11 @@ static int u16550_setup(struct uart_dev_s *dev)
|
|||
switch (priv->bits)
|
||||
{
|
||||
case 5 :
|
||||
lcr |= UART_LCR_WLS_7BIT;
|
||||
lcr |= UART_LCR_WLS_5BIT;
|
||||
break;
|
||||
|
||||
case 6 :
|
||||
lcr |= UART_LCR_WLS_7BIT;
|
||||
lcr |= UART_LCR_WLS_6BIT;
|
||||
break;
|
||||
|
||||
case 7 :
|
||||
|
|
@ -603,7 +603,7 @@ static int u16550_setup(struct uart_dev_s *dev)
|
|||
|
||||
default:
|
||||
case 8 :
|
||||
lcr |= UART_LCR_WLS_7BIT;
|
||||
lcr |= UART_LCR_WLS_8BIT;
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue