From: Tomoya MORINAGA Date: Fri, 6 Jul 2012 08:19:43 +0000 (+0900) Subject: pch_uart: Fix parity setting issue X-Git-Tag: v3.4.12~28 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=3dcb53637949c288a1ff2a06ee3c0a212ace6ef1;p=karo-tx-linux.git pch_uart: Fix parity setting issue commit 38bd2a1ac736901d1cf4971c78ef952ba92ef78b upstream. Parity Setting value is reverse. E.G. In case of setting ODD parity, EVEN value is set. This patch inverts "if" condition. Signed-off-by: Tomoya MORINAGA Acked-by: Alan Cox Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c index 20001b749b26..103a25f77d14 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c @@ -1357,7 +1357,7 @@ static void pch_uart_set_termios(struct uart_port *port, stb = PCH_UART_HAL_STB1; if (termios->c_cflag & PARENB) { - if (!(termios->c_cflag & PARODD)) + if (termios->c_cflag & PARODD) parity = PCH_UART_HAL_PARITY_ODD; else parity = PCH_UART_HAL_PARITY_EVEN;