Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

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>

authored by

Masanari Iida and committed by
Jiri Kosina
a7bfe171 67748df8

+2 -2
+2 -2
drivers/tty/serial/sn_console.c
··· 461 461 struct tty_struct *tty; 462 462 463 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 465 return; 466 466 } 467 467 468 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 470 return; 471 471 } 472 472