Commit c6d30576 authored by Jonathan Neuschäfer's avatar Jonathan Neuschäfer Committed by Greg Kroah-Hartman
Browse files

serial: Fix a typo ("ignorning")



Fix the two instances of this typo present in the MSM and VT8500 serial
drivers.

Signed-off-by: default avatarJonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: default avatarMukesh Ojha <quic_mojha@quicinc.com>
Acked-by: default avatarKonrad Dybcio <konrad.dybcio@somainline.org>
Link: https://lore.kernel.org/r/20221104103719.2234098-1-j.neuschaefer@gmx.net


Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 2e2b4b89
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -816,7 +816,7 @@ static void msm_handle_rx(struct uart_port *port)
			port->icount.rx++;
		}

		/* Mask conditions we're ignorning. */
		/* Mask conditions we're ignoring. */
		sr &= port->read_status_mask;

		if (sr & MSM_UART_SR_RX_BREAK)
+1 −1
Original line number Diff line number Diff line
@@ -168,7 +168,7 @@ static void handle_rx(struct uart_port *port)

		c = readw(port->membase + VT8500_RXFIFO) & 0x3ff;

		/* Mask conditions we're ignorning. */
		/* Mask conditions we're ignoring. */
		c &= ~port->read_status_mask;

		if (c & FER) {