diff options
author | Alan Stern <stern@rowland.harvard.edu> | 2009-08-20 15:23:47 -0400 |
---|---|---|
committer | Live-CD User <linux@linux.site> | 2009-09-19 13:13:36 -0700 |
commit | 1f5c13fad4ec5617b610e12205902c06298c096a (patch) | |
tree | 4981e1a9b63472e4ccd905f180493bb571b722fb /drivers/char | |
parent | 797938b5e33991dadf4dd9228b932cc69c3e905a (diff) | |
download | linux-1f5c13fad4ec5617b610e12205902c06298c096a.tar.bz2 |
TTY: fix typos
This patch (as1282) fixes some obvious typos in the TTY core.
Signed-off-by: Alan Stern <stern@rowland.harvard.edu>
CC: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/char')
-rw-r--r-- | drivers/char/tty_port.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/char/tty_port.c b/drivers/char/tty_port.c index c767e30a1425..a4bbb28f10be 100644 --- a/drivers/char/tty_port.c +++ b/drivers/char/tty_port.c @@ -100,7 +100,7 @@ EXPORT_SYMBOL(tty_port_tty_set); static void tty_port_shutdown(struct tty_port *port) { if (port->ops->shutdown && - test_and_clear_bit(ASYNC_INITIALIZED, &port->flags)) + test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags)) port->ops->shutdown(port); } @@ -311,7 +311,7 @@ int tty_port_close_start(struct tty_port *port, struct tty_struct *tty, struct f port->ops->drop(port); return 0; } - set_bit(ASYNC_CLOSING, &port->flags); + set_bit(ASYNCB_CLOSING, &port->flags); tty->closing = 1; spin_unlock_irqrestore(&port->lock, flags); /* Don't block on a stalled port, just pull the chain */ |