diff options
author | Jiri Slaby <jslaby@suse.cz> | 2021-09-14 11:11:19 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2021-09-22 16:59:13 +0200 |
commit | 4586c5fc4590662be906cfb06deabdfffcaec293 (patch) | |
tree | 5fda76268a872a5556e5301d1a60d8df2b32dc6b /drivers/tty | |
parent | serial: 8250: SERIAL_8250_EM should depend on ARCH_RENESAS (diff) | |
download | linux-4586c5fc4590662be906cfb06deabdfffcaec293.tar.xz linux-4586c5fc4590662be906cfb06deabdfffcaec293.zip |
tty: unexport tty_ldisc_release
Initially, tty_ldisc_release() was exported for speakup (spk_tty) while
in staging. Later, the call to this function was removed as it was bogus
anyway.
Remove the export now.
Signed-off-by: Jiri Slaby <jslaby@suse.cz>
Link: https://lore.kernel.org/r/20210914091134.17426-1-jslaby@suse.cz
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/tty')
-rw-r--r-- | drivers/tty/tty_ldisc.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/tty/tty_ldisc.c b/drivers/tty/tty_ldisc.c index 756a4bfa6a69..3e4e0b20b4bb 100644 --- a/drivers/tty/tty_ldisc.c +++ b/drivers/tty/tty_ldisc.c @@ -812,7 +812,6 @@ void tty_ldisc_release(struct tty_struct *tty) tty_ldisc_debug(tty, "released\n"); } -EXPORT_SYMBOL_GPL(tty_ldisc_release); /** * tty_ldisc_init - ldisc setup for new tty |