diff options
author | Jiri Slaby <jirislaby@gmail.com> | 2007-02-10 04:44:55 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-02-11 13:51:26 -0500 |
commit | b963a8441cb95999c97bea379607071a869c65f0 (patch) | |
tree | 111fa0624be52ba830902fac3777febf340cf5e8 /drivers/usb/serial/digi_acceleport.c | |
parent | 1ed0c0b7306d7c93e83ebe30087a12684b280cdc (diff) |
[PATCH] Char: tty_wakeup cleanup
tty_wakeup cleanup
- remove wake_up_interruptible(&tty->write_wait) surrounding
tty_wakup(tty);
- substitute tty->ldisc.write_wakeup(tty) + wake_up() by tty_wakeup(tty);
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Acked-by: Tilman Schmidt <tilman@imap.cc>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/usb/serial/digi_acceleport.c')
-rw-r--r-- | drivers/usb/serial/digi_acceleport.c | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/drivers/usb/serial/digi_acceleport.c b/drivers/usb/serial/digi_acceleport.c index 0b0fb51bad3e..d78692c01cfa 100644 --- a/drivers/usb/serial/digi_acceleport.c +++ b/drivers/usb/serial/digi_acceleport.c | |||
@@ -616,15 +616,7 @@ static void digi_wakeup_write_lock(struct work_struct *work) | |||
616 | 616 | ||
617 | static void digi_wakeup_write( struct usb_serial_port *port ) | 617 | static void digi_wakeup_write( struct usb_serial_port *port ) |
618 | { | 618 | { |
619 | 619 | tty_wakeup(port->tty); | |
620 | struct tty_struct *tty = port->tty; | ||
621 | |||
622 | |||
623 | /* wake up port processes */ | ||
624 | wake_up_interruptible( &port->write_wait ); | ||
625 | |||
626 | /* wake up line discipline */ | ||
627 | tty_wakeup(tty); | ||
628 | } | 620 | } |
629 | 621 | ||
630 | 622 | ||