Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

[PATCH] tty_insert_flip_string_flags() license fix

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@lxorguk.ukuu.org.uk>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>

authored by

Tobias Powalowski and committed by
Linus Torvalds
ff4547f4 a2eb0c10

+1 -1
+1 -1
drivers/char/tty_io.c
··· 398 398 while (unlikely(size > copied)); 399 399 return copied; 400 400 } 401 - EXPORT_SYMBOL_GPL(tty_insert_flip_string_flags); 401 + EXPORT_SYMBOL(tty_insert_flip_string_flags); 402 402 403 403 void tty_schedule_flip(struct tty_struct *tty) 404 404 {