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>
This commit is contained in:
parent
797938b5e3
commit
1f5c13fad4
|
@ -100,7 +100,7 @@ EXPORT_SYMBOL(tty_port_tty_set);
|
||||||
static void tty_port_shutdown(struct tty_port *port)
|
static void tty_port_shutdown(struct tty_port *port)
|
||||||
{
|
{
|
||||||
if (port->ops->shutdown &&
|
if (port->ops->shutdown &&
|
||||||
test_and_clear_bit(ASYNC_INITIALIZED, &port->flags))
|
test_and_clear_bit(ASYNCB_INITIALIZED, &port->flags))
|
||||||
port->ops->shutdown(port);
|
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);
|
port->ops->drop(port);
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
set_bit(ASYNC_CLOSING, &port->flags);
|
set_bit(ASYNCB_CLOSING, &port->flags);
|
||||||
tty->closing = 1;
|
tty->closing = 1;
|
||||||
spin_unlock_irqrestore(&port->lock, flags);
|
spin_unlock_irqrestore(&port->lock, flags);
|
||||||
/* Don't block on a stalled port, just pull the chain */
|
/* Don't block on a stalled port, just pull the chain */
|
||||||
|
|
Loading…
Reference in New Issue