diff options
author | Tomoya MORINAGA <tomoya.rohm@gmail.com> | 2012-07-06 04:19:43 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-26 16:37:14 -0400 |
commit | 38bd2a1ac736901d1cf4971c78ef952ba92ef78b (patch) | |
tree | 55f11bfd7ed62fb0992d857b8525feee0122d2ca /drivers/tty/serial | |
parent | 9539dfb7ac1c84522fe1f79bb7dac2990f3de44a (diff) |
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')
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 2 |
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, | |||
1368 | stb = PCH_UART_HAL_STB1; | 1368 | stb = PCH_UART_HAL_STB1; |
1369 | 1369 | ||
1370 | if (termios->c_cflag & PARENB) { | 1370 | if (termios->c_cflag & PARENB) { |
1371 | if (!(termios->c_cflag & PARODD)) | 1371 | if (termios->c_cflag & PARODD) |
1372 | parity = PCH_UART_HAL_PARITY_ODD; | 1372 | parity = PCH_UART_HAL_PARITY_ODD; |
1373 | else | 1373 | else |
1374 | parity = PCH_UART_HAL_PARITY_EVEN; | 1374 | parity = PCH_UART_HAL_PARITY_EVEN; |