serial: Fix a typo ("ignorning")
authorJonathan Neuschäfer <j.neuschaefer@gmx.net>
Fri, 4 Nov 2022 10:37:19 +0000 (11:37 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 9 Nov 2022 12:03:12 +0000 (13:03 +0100)
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>
drivers/tty/serial/msm_serial.c
drivers/tty/serial/vt8500_serial.c

index 2b2e0f74b75a001be393b0ecd1588c310687dc2f..843798e630844cfaa931a833244153fcab1b51cc 100644 (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)
index deedb6513160690919655a911ac051f8b03cd509..cc9157df732f4ddbfe2953765c25cd08f3a25b51 100644 (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) {