Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 669bd45f authored by Alan Cox's avatar Alan Cox Committed by Greg Kroah-Hartman
Browse files

pch_uart: Fix missing break for 16 byte fifo



Otherwise we fall back to the wrong value.

Reported-by: default avatar <dcb314@hotmail.com>
Resolves-bug: https://bugzilla.kernel.org/show_bug.cgi?id=44091


Signed-off-by: default avatarAlan Cox <alan@linux.intel.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fde8be29
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -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;