aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/tty
diff options
context:
space:
mode:
authorMasanari Iida <standby24x7@gmail.com>2012-02-18 05:49:47 -0500
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-02-24 16:50:45 -0500
commit90af6d208263d0f3541eee0525f093c248d88a42 (patch)
tree7389b60f61cd6500bb6e65e1c9d8ef7be3396ad1 /drivers/tty
parentb7974deddc57307ddc9193d81e76ff818862d4e9 (diff)
serial: Fix typo in sn_console.c
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>
Diffstat (limited to 'drivers/tty')
-rw-r--r--drivers/tty/serial/sn_console.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/sn_console.c b/drivers/tty/serial/sn_console.c
index 238c7df73ef5..4e1b5515f881 100644
--- a/drivers/tty/serial/sn_console.c
+++ b/drivers/tty/serial/sn_console.c
@@ -461,12 +461,12 @@ sn_receive_chars(struct sn_cons_port *port, unsigned long flags)
461 struct tty_struct *tty; 461 struct tty_struct *tty;
462 462
463 if (!port) { 463 if (!port) {
464 printk(KERN_ERR "sn_receive_chars - port NULL so can't receieve\n"); 464 printk(KERN_ERR "sn_receive_chars - port NULL so can't receive\n");
465 return; 465 return;
466 } 466 }
467 467
468 if (!port->sc_ops) { 468 if (!port->sc_ops) {
469 printk(KERN_ERR "sn_receive_chars - port->sc_ops NULL so can't receieve\n"); 469 printk(KERN_ERR "sn_receive_chars - port->sc_ops NULL so can't receive\n");
470 return; 470 return;
471 } 471 }
472 472