[drivers/serial/uart_16550] Typo fix in data bits setup

Signed-off-by: Anton D. Kachalov <mouse@yandex-team.ru>
This commit is contained in:
Anton D. Kachalov 2015-07-31 20:19:54 +03:00
parent 2ef03d49fe
commit 274b7986be

View File

@ -590,11 +590,11 @@ static int u16550_setup(struct uart_dev_s *dev)
switch (priv->bits) switch (priv->bits)
{ {
case 5 : case 5 :
lcr |= UART_LCR_WLS_7BIT; lcr |= UART_LCR_WLS_5BIT;
break; break;
case 6 : case 6 :
lcr |= UART_LCR_WLS_7BIT; lcr |= UART_LCR_WLS_6BIT;
break; break;
case 7 : case 7 :
@ -603,7 +603,7 @@ static int u16550_setup(struct uart_dev_s *dev)
default: default:
case 8 : case 8 :
lcr |= UART_LCR_WLS_7BIT; lcr |= UART_LCR_WLS_8BIT;
break; break;
} }