diff options
author | Alan Cox <alan@linux.intel.com> | 2012-07-02 19:51:38 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-07-26 22:37:12 +0200 |
commit | 9bc03743fff0770dc5a5324ba92e67cc377f16ca (patch) | |
tree | 6338a4f076629077e493e7ffabbaf904ac382fd6 /drivers/tty | |
parent | tty ldisc: Close/Reopen race prevention should check the proper flag (diff) | |
download | linux-9bc03743fff0770dc5a5324ba92e67cc377f16ca.tar.xz linux-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 'drivers/tty')
-rw-r--r-- | drivers/tty/serial/pch_uart.c | 1 |
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; |