The patch titled Char: nozomi, use tty_wakeup has been removed from the -mm tree. Its filename is char-nozomi-use-tty_wakeup.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 | 9 ++------- 1 files changed, 2 insertions(+), 7 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 @@ -973,13 +973,8 @@ static int send_data(enum port_type inde 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 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 char-mxser_new-compact-structures-round2.patch char-mxser_new-reverse-if-else-paths-patch.patch char-mxser_new-comments-cleanup.patch char-mxser_new-correct-intr-handler-proto.patch char-mxser_new-delete-ttys-and-termios.patch char-mxser_new-pci-probing.patch char-mxser_new-clean-macros.patch maintainers-add-me-to-isicom-mxser.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