The patch titled tty_insert_flip_string_flags() license fix has been removed from the -mm tree. Its filename is tty_insert_flip_string_flags-license-fix.patch This patch was probably dropped from -mm because it has now been merged into a subsystem tree or into Linus's tree, or because it was folded into its parent patch in the -mm tree. ------------------------------------------------------ Subject: tty_insert_flip_string_flags() license fix From: Tobias Powalowski <t.powa@xxxxxx> We still don't have the tty layer licensing compatibility quite right. tty_insert_flip_char() used to be inlined in include/linux/tty_flip.h. It is now out-of-lined and hence needs EXPORT_SYMBOL() to be back-compatible. One known offender is the Intel Modem driver. Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- drivers/char/tty_io.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/char/tty_io.c~tty_insert_flip_string_flags-license-fix drivers/char/tty_io.c --- devel/drivers/char/tty_io.c~tty_insert_flip_string_flags-license-fix 2006-05-22 22:34:59.000000000 -0700 +++ devel-akpm/drivers/char/tty_io.c 2006-05-22 22:34:59.000000000 -0700 @@ -398,7 +398,7 @@ int tty_insert_flip_string_flags(struct while (unlikely(size > copied)); return copied; } -EXPORT_SYMBOL_GPL(tty_insert_flip_string_flags); +EXPORT_SYMBOL(tty_insert_flip_string_flags); void tty_schedule_flip(struct tty_struct *tty) { _ Patches currently in -mm which might be from t.powa@xxxxxx are origin.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