aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/pch_uart.c
diff options
context:
space:
mode:
authorTomoya MORINAGA <tomoya.rohm@gmail.com>2012-07-06 17:19:43 +0900
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-17 09:27:31 -0700
commit2fc39aebf682bed97a78d278f6adf6c395700d19 (patch)
tree8fc2ae06a19ce9ae08b6729cfe3f5ee4ede82ccf /drivers/tty/serial/pch_uart.c
parentpch_uart: Fix rx error interrupt setting issue (diff)
downloadlinux-dev-2fc39aebf682bed97a78d278f6adf6c395700d19.tar.xz
linux-dev-2fc39aebf682bed97a78d278f6adf6c395700d19.zip
pch_uart: Fix parity setting issue
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 <tomoya.rohm@gmail.com> Acked-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty/serial/pch_uart.c')
-rw-r--r--drivers/tty/serial/pch_uart.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
index 2cc9b4694625..558ce8509a9a 100644
--- a/drivers/tty/serial/pch_uart.c
+++ b/drivers/tty/serial/pch_uart.c
@@ -1368,7 +1368,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;