Searched refs:tty_msg (Results 1 – 1 of 1) sorted by relevance
/kernel/linux/linux-5.10/include/linux/ |
D | tty.h | 789 #define tty_msg(fn, tty, f, ...) \ macro 792 #define tty_debug(tty, f, ...) tty_msg(pr_debug, tty, f, ##__VA_ARGS__) 793 #define tty_info(tty, f, ...) tty_msg(pr_info, tty, f, ##__VA_ARGS__) 794 #define tty_notice(tty, f, ...) tty_msg(pr_notice, tty, f, ##__VA_ARGS__) 795 #define tty_warn(tty, f, ...) tty_msg(pr_warn, tty, f, ##__VA_ARGS__) 796 #define tty_err(tty, f, ...) tty_msg(pr_err, tty, f, ##__VA_ARGS__) 799 tty_msg(pr_info_ratelimited, tty, f, ##__VA_ARGS__)
|