tty: fix typos in comments
authorJulia Lawall <Julia.Lawall@inria.fr>
Sat, 21 May 2022 11:11:45 +0000 (13:11 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 10 Jun 2022 11:32:52 +0000 (13:32 +0200)
Spelling mistakes (triple letters) in comments.
Detected with the help of Coccinelle.

Signed-off-by: Julia Lawall <Julia.Lawall@inria.fr>
Link: https://lore.kernel.org/r/20220521111145.81697-95-Julia.Lawall@inria.fr
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/mips_ejtag_fdc.c
drivers/tty/tty_io.c

index 31dceb5..4990742 100644 (file)
@@ -1222,7 +1222,7 @@ static void kgdbfdc_push_one(void)
 
        /* Construct a word from any data in buffer */
        word = mips_ejtag_fdc_encode(bufs, &kgdbfdc_wbuflen, 1);
-       /* Relocate any remaining data to beginnning of buffer */
+       /* Relocate any remaining data to beginning of buffer */
        kgdbfdc_wbuflen -= word.bytes;
        for (i = 0; i < kgdbfdc_wbuflen; ++i)
                kgdbfdc_wbuf[i] = kgdbfdc_wbuf[i + word.bytes];
index 8fec1d8..82a8855 100644 (file)
@@ -1663,7 +1663,7 @@ void tty_kclose(struct tty_struct *tty)
         */
        tty_ldisc_release(tty);
 
-       /* Wait for pending work before tty destruction commmences */
+       /* Wait for pending work before tty destruction commences */
        tty_flush_works(tty);
 
        tty_debug_hangup(tty, "freeing structure\n");