Re: [PATCH] TTY: fix typos

From: Greg KH
Date: Thu Aug 20 2009 - 15:30:49 EST


On Thu, Aug 20, 2009 at 03:23:47PM -0400, Alan Stern wrote:
> This patch (as1282) fixes some obvious typos in the TTY core.
>
> Signed-off-by: Alan Stern <stern@xxxxxxxxxxxxxxxxxxx>
> CC: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx>

Ick, this looks like it needs to go in for .31, right?

thanks,

greg k-h


> Index: usb-2.6/drivers/char/tty_port.c
> ===================================================================
> --- usb-2.6.orig/drivers/char/tty_port.c
> +++ usb-2.6/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->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 */
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/