aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty/serial/pch_uart.c
diff options
context:
space:
mode:
authorAlan Cox <alan@linux.intel.com>2012-07-02 18:51:38 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-26 13:37:12 -0700
commit9bc03743fff0770dc5a5324ba92e67cc377f16ca (patch)
tree6338a4f076629077e493e7ffabbaf904ac382fd6 /drivers/tty/serial/pch_uart.c
parenttty ldisc: Close/Reopen race prevention should check the proper flag (diff)
downloadlinux-dev-9bc03743fff0770dc5a5324ba92e67cc377f16ca.tar.xz
linux-dev-9bc03743fff0770dc5a5324ba92e67cc377f16ca.zip
pch_uart: Fix missing break for 16 byte fifo
Otherwise we fall back to the wrong value. Reported-by: <dcb314@hotmail.com> Resolves-bug: https://bugzilla.kernel.org/show_bug.cgi?id=44091 Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to '')
-rw-r--r--drivers/tty/serial/pch_uart.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/tty/serial/pch_uart.c b/drivers/tty/serial/pch_uart.c
index d291518a58a4..c5bc23d6ade9 100644
--- a/drivers/tty/serial/pch_uart.c
+++ b/drivers/tty/serial/pch_uart.c
@@ -1266,6 +1266,7 @@ static int pch_uart_startup(struct uart_port *port)
break;
case 16:
fifo_size = PCH_UART_HAL_FIFO16;
+ break;
case 1:
default:
fifo_size = PCH_UART_HAL_FIFO_DIS;