public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Char: nozomi, use tty_wakeup
@ 2006-10-06 23:27 Jiri Slaby
  0 siblings, 0 replies; only message in thread
From: Jiri Slaby @ 2006-10-06 23:27 UTC (permalink / raw)
  To: Andrew Morton; +Cc: linux-kernel, p.hardwick, Alan Cox

nozomi, use tty_wakeup

Use tty_wakeup instead of self-implemented wake calling.

Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Signed-off-by: Jiri Slaby <jirislaby@gmail.com>

---
commit b19884f570ea41ff9100cc56962e8d6f435e2337
tree f68d0e40ee5e527a0c6d96dc28291235032c45e1
parent 56269f9ba9ccaf60a314ebcf58d4de650995c4e5
author Jiri Slaby <jirislaby@gmail.com> Sat, 07 Oct 2006 01:23:24 +0200
committer Jiri Slaby <xslaby@anemoi.localdomain> Sat, 07 Oct 2006 01:23:24 +0200

 drivers/char/nozomi.c |    8 ++------
 1 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/drivers/char/nozomi.c b/drivers/char/nozomi.c
index cd95ed5..8d502d2 100644
--- a/drivers/char/nozomi.c
+++ b/drivers/char/nozomi.c
@@ -922,12 +922,8 @@ static int send_data( enum port_type ind
     SET_MEM( addr, &size, 4 );
     SET_MEM_BUF( addr + 4, dc->send_buf, size);
 
-    if (port->tty) {
-        if ((tty->flags & (1 << TTY_DO_WRITE_WAKEUP)) && tty->ldisc.write_wakeup) {
-            tty->ldisc.write_wakeup(tty);
-        }
-        wake_up_interruptible(&tty->write_wait);
-    }
+    if (tty)
+	tty_wakeup(tty);
 
     return 1;
 }

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-06 23:27 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-06 23:27 [PATCH] Char: nozomi, use tty_wakeup Jiri Slaby

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox