diff options
author | Masanari Iida <standby24x7@gmail.com> | 2012-02-18 19:49:47 +0900 |
---|---|---|
committer | Jiri Kosina <jkosina@suse.cz> | 2012-02-21 11:40:39 +0100 |
commit | a7bfe171cb2d700a5d31272f4f7d4710eac15c38 (patch) | |
tree | 9c1e81764262e183513997a5d3a8bd40f6b637c6 | |
parent | 67748df83055cea4598e7f7099f1f061cf61f530 (diff) | |
download | linux-3.10-a7bfe171cb2d700a5d31272f4f7d4710eac15c38.tar.gz linux-3.10-a7bfe171cb2d700a5d31272f4f7d4710eac15c38.tar.bz2 linux-3.10-a7bfe171cb2d700a5d31272f4f7d4710eac15c38.zip |
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: Jiri Kosina <jkosina@suse.cz>
-rw-r--r-- | drivers/tty/serial/sn_console.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/tty/serial/sn_console.c b/drivers/tty/serial/sn_console.c index 238c7df73ef..4e1b5515f88 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) 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; } |