]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
serial: Fix typo in sn_console.c
authorMasanari Iida <standby24x7@gmail.com>
Sat, 18 Feb 2012 10:49:47 +0000 (19:49 +0900)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 24 Feb 2012 21:50:45 +0000 (13:50 -0800)
Correct spelling "receieve" to "receive" in
drivers/tty/serial/sn_console.c

Signed-off-by: Masanari Iida <standby24x7@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/tty/serial/sn_console.c

index 238c7df73ef57cbb43599bf7b236fa45545d6e02..4e1b5515f8814aa15b35fb27cce500290a9d5d7d 100644 (file)
@@ -461,12 +461,12 @@ sn_receive_chars(struct sn_cons_port *port, unsigned long flags)
        struct tty_struct *tty;
 
        if (!port) {
-               printk(KERN_ERR "sn_receive_chars - port NULL so can't receieve\n");
+               printk(KERN_ERR "sn_receive_chars - port NULL so can't receive\n");
                return;
        }
 
        if (!port->sc_ops) {
-               printk(KERN_ERR "sn_receive_chars - port->sc_ops  NULL so can't receieve\n");
+               printk(KERN_ERR "sn_receive_chars - port->sc_ops  NULL so can't receive\n");
                return;
        }