serial: Fix a typo ("ignorning")

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

Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Reviewed-by: Mukesh Ojha <quic_mojha@quicinc.com>
Acked-by: Konrad Dybcio <konrad.dybcio@somainline.org>
Link: https://lore.kernel.org/r/20221104103719.2234098-1-j.neuschaefer@gmx.net
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Jonathan Neuschäfer 2022-11-04 11:37:19 +01:00 committed by Greg Kroah-Hartman
parent 2e2b4b8961
commit c6d30576bd
2 changed files with 2 additions and 2 deletions

View File

@ -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)

View File

@ -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) {