The patch titled Char: nozomi, use tty_wakeup has been added to the -mm tree. Its filename is char-nozomi-use-tty_wakeup.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Char: nozomi, use tty_wakeup From: Jiri Slaby <jirislaby@xxxxxxxxx> Use tty_wakeup instead of self-implemented wake calling. Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Jiri Slaby <jirislaby@xxxxxxxxx> Cc: Greg Kroah-Hartman <gregkh@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/nozomi.c | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff -puN drivers/char/nozomi.c~char-nozomi-use-tty_wakeup drivers/char/nozomi.c --- a/drivers/char/nozomi.c~char-nozomi-use-tty_wakeup +++ a/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; } _ Patches currently in -mm which might be from jirislaby@xxxxxxxxx are char-nozomi-use-tty_wakeup.patch pci-mxser-pci-refcounts.patch mxser-make-an-experimental-clone.patch char-mxser_new-correct-include-file.patch char-mxser_new-upgrade-to-191.patch char-mxser_new-rework-to-allow-dynamic-structs.patch char-mxser_new-use-__devinit-macros.patch char-mxser_new-pci_request_region-for-pci-regions.patch char-mxser_new-check-request_region-retvals.patch char-mxser_new-kill-unneeded-memsets.patch char-mxser_new-revert-spin_lock-changes.patch char-mxser_new-remove-request-for-testers-line.patch char-mxser_new-debug-printk-dependent-on-debug.patch char-mxser_new-alter-license-terms.patch char-mxser_new-code-upside-down.patch char-mxser_new-cmspar-is-defined.patch char-remove-unneded-termbits-redefinitions-mxser_new.patch char-mxser_new-eliminate-tty-ldisc-deref.patch char-mxser_new-testbit-for-bit-testing.patch char-mxser_new-correct-fail-paths.patch char-mxser_new-dont-check-tty_unregister-retval.patch char-mxser_new-compress-isa-finding.patch char-mxser_new-register-tty-devices-on-the-fly.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html