The patch titled tty_insert_flip_string_flags() license fix has been added to the -mm tree. Its filename is tty_insert_flip_string_flags-license-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ 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 10:36:11.000000000 -0700 +++ devel-akpm/drivers/char/tty_io.c 2006-05-22 10:36:11.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 tty_insert_flip_string_flags-license-fix.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