Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 90af6d20 authored by Masanari Iida's avatar Masanari Iida Committed by Greg Kroah-Hartman
Browse files

serial: Fix typo in sn_console.c



Correct spelling "receieve" to "receive" in
drivers/tty/serial/sn_console.c

Signed-off-by: default avatarMasanari Iida <standby24x7@gmail.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent b7974ded
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -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;
	}