From: Tomoya MORINAGA Date: Fri, 6 Jul 2012 08:19:43 +0000 (+0900) Subject: pch_uart: Fix parity setting issue X-Git-Tag: v3.5.5~28 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=774093a4f9b16c74f3ffb264314a798528786ff6;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 ad196d6a04ee..b0991f724397 100644 --- a/drivers/tty/serial/pch_uart.c +++ b/drivers/tty/serial/pch_uart.c @@ -1365,7 +1365,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;