From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755309AbZHTTan (ORCPT ); Thu, 20 Aug 2009 15:30:43 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1755274AbZHTTam (ORCPT ); Thu, 20 Aug 2009 15:30:42 -0400 Received: from kroah.org ([198.145.64.141]:57318 "EHLO coco.kroah.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755031AbZHTTal (ORCPT ); Thu, 20 Aug 2009 15:30:41 -0400 Date: Thu, 20 Aug 2009 12:29:15 -0700 From: Greg KH To: Alan Stern Cc: Alan Cox , Kernel development list Subject: Re: [PATCH] TTY: fix typos Message-ID: <20090820192915.GB15574@kroah.com> References: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 > CC: Alan Cox 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 */