serial: efm32: Fix parity management in 'efm32_uart_console_get_options()'
authorChristophe JAILLET <christophe.jaillet@wanadoo.fr>
Fri, 12 May 2017 14:35:45 +0000 (16:35 +0200)
committerRaspbian kernel package updater <root@raspbian.org>
Sun, 23 Jul 2017 03:00:38 +0000 (03:00 +0000)
commit1aa2b127825856b9e2d88a4e74fc504e6c4665db
tree6e05a5eeae0b42a8a4c8dc3530537bd3d6f33516
parent19679dcc11f7f519a27a7d1f0efdf0ed521fdc08
serial: efm32: Fix parity management in 'efm32_uart_console_get_options()'

commit be40597a1bc173bf9dadccdf5388b956f620ae8f upstream.

UARTn_FRAME_PARITY_ODD is 0x0300
UARTn_FRAME_PARITY_EVEN is 0x0200
So if the UART is configured for EVEN parity, it would be reported as ODD.
Fix it by correctly testing if the 2 bits are set.

Fixes: 3afbd89c9639 ("serial/efm32: add new driver")
Signed-off-by: Christophe JAILLET <christophe.jaillet@wanadoo.fr>
Acked-by: Uwe Kleine-König <u.kleine-koenig@pengutronix.de>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/efm32-uart.c