From: Greg Kroah-Hartman Date: Thu, 8 Apr 2021 12:51:23 +0000 (+0200) Subject: tty: tty.h: remove tty_info() X-Git-Tag: v5.13-rc1~172^2~44 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4d5a64cbc7add9e2697080c6bb78f961e9bbd2c3;p=thirdparty%2Fkernel%2Flinux.git tty: tty.h: remove tty_info() No one is calling this macro, and no one should, so remove it from the .h file. Cc: Tetsuo Handa Cc: Jiri Slaby Signed-off-by: Greg Kroah-Hartman Link: https://lore.kernel.org/r/20210408125134.3016837-3-gregkh@linuxfoundation.org Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/tty/tty.h b/drivers/tty/tty.h index f4cd20261e914..75624d7d84aec 100644 --- a/drivers/tty/tty.h +++ b/drivers/tty/tty.h @@ -10,7 +10,6 @@ fn("%s %s: " f, tty_driver_name(tty), tty_name(tty), ##__VA_ARGS__) #define tty_debug(tty, f, ...) tty_msg(pr_debug, tty, f, ##__VA_ARGS__) -#define tty_info(tty, f, ...) tty_msg(pr_info, tty, f, ##__VA_ARGS__) #define tty_notice(tty, f, ...) tty_msg(pr_notice, tty, f, ##__VA_ARGS__) #define tty_warn(tty, f, ...) tty_msg(pr_warn, tty, f, ##__VA_ARGS__) #define tty_err(tty, f, ...) tty_msg(pr_err, tty, f, ##__VA_ARGS__)