diff options
author | Tilman Schmidt <tilman@imap.cc> | 2012-03-25 19:12:37 +0200 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2012-04-09 10:30:38 -0700 |
commit | ef37ea34cac19ef46173b26ee47a102f3b987d1e (patch) | |
tree | c7da43bc4849afeb9b963108020e631d175f8258 /drivers/isdn | |
parent | 388bc26226807fbcf4c626b81bb17a2e74aa4b1b (diff) | |
download | linux-stable-ef37ea34cac19ef46173b26ee47a102f3b987d1e.tar.gz linux-stable-ef37ea34cac19ef46173b26ee47a102f3b987d1e.tar.bz2 linux-stable-ef37ea34cac19ef46173b26ee47a102f3b987d1e.zip |
isdn/gigaset: use gig_dbg() for debugging output
The "TTY buffer in tty_port" patchset introduced an opencoded
debug message in the Gigaset tty device if_close() function.
Change it to use the gig_dbg() macro like everywhere else in
the driver.
Signed-off-by: Tilman Schmidt <tilman@imap.cc>
Cc: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/isdn')
-rw-r--r-- | drivers/isdn/gigaset/interface.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/isdn/gigaset/interface.c b/drivers/isdn/gigaset/interface.c index b3d6ac17272d..a6d9fd2858f7 100644 --- a/drivers/isdn/gigaset/interface.c +++ b/drivers/isdn/gigaset/interface.c @@ -176,7 +176,7 @@ static void if_close(struct tty_struct *tty, struct file *filp) struct cardstate *cs = tty->driver_data; if (!cs) { /* happens if we didn't find cs in open */ - printk(KERN_DEBUG "%s: no cardstate\n", __func__); + gig_dbg(DEBUG_IF, "%s: no cardstate", __func__); return; } |