tty: Use tty_debug() for tty_ldisc_debug()
authorPeter Hurley <[email protected]>
Mon, 13 Jul 2015 02:49:10 +0000 (22:49 -0400)
committerGreg Kroah-Hartman <[email protected]>
Fri, 24 Jul 2015 01:37:31 +0000 (18:37 -0700)
Replace tty_ldisc_debug() macro definition; substitute with equivalent
tty_debug() invocation.

Signed-off-by: Peter Hurley <[email protected]>
Signed-off-by: Greg Kroah-Hartman <[email protected]>
drivers/tty/tty_ldisc.c

index c07fb5d9bcf9b5429689a908417021fb5716e8f9..81916804019ea4e8d23e1c7bec7a48dfa844e766 100644 (file)
@@ -22,9 +22,7 @@
 #undef LDISC_DEBUG_HANGUP
 
 #ifdef LDISC_DEBUG_HANGUP
-#define tty_ldisc_debug(tty, f, args...) ({                              \
-       printk(KERN_DEBUG "%s: %s: " f, __func__, tty_name(tty), ##args); \
-})
+#define tty_ldisc_debug(tty, f, args...)       tty_debug(tty, f, ##args)
 #else
 #define tty_ldisc_debug(tty, f, args...)
 #endif