diff options
author | J Freyensee <james_p_freyensee@linux.intel.com> | 2010-12-09 10:37:38 +0000 |
---|---|---|
committer | Alan Cox <alan@linux.intel.com> | 2010-12-09 10:37:38 +0000 |
commit | 6157a886622c175198b7ddd38e9b55d6884d8ad6 (patch) | |
tree | 78c403745c57f2e817ca4a68b483f43d54c661d3 /drivers | |
parent | b63901ef247903169f9f6c757acae294202e86fc (diff) | |
download | mrst-s0i3-test-6157a886622c175198b7ddd38e9b55d6884d8ad6.tar.gz mrst-s0i3-test-6157a886622c175198b7ddd38e9b55d6884d8ad6.tar.xz mrst-s0i3-test-6157a886622c175198b7ddd38e9b55d6884d8ad6.zip |
n_tracesink: pr_debug removal from tracesink_ldisc
This patch removes all pr_debug in the n_tracesink ldisc driver.
Signed-off-by: J Freyensee <james_p_freyensee@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/n_tracesink.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/tty/n_tracesink.c b/drivers/tty/n_tracesink.c index 0655658da69..a3b0682d7a0 100644 --- a/drivers/tty/n_tracesink.c +++ b/drivers/tty/n_tracesink.c @@ -94,9 +94,6 @@ static int n_tracesink_open(struct tty_struct *tty) } mutex_unlock(&writelock); - pr_debug("%s(%s): called, return value %d\n", - __FILE__, __func__, retval); - return retval; } @@ -117,8 +114,6 @@ static void n_tracesink_close(struct tty_struct *tty) mutex_unlock(&writelock); tty->disc_data = NULL; - - pr_debug("%s(%s): called\n", __FILE__, __func__); } /** @@ -185,8 +180,6 @@ static ssize_t n_tracesink_write(struct tty_struct *tty, struct file *file, void n_tracesink_datadrain(u8 *cp, int count) { - pr_debug("%s(%s): called\n", __FILE__, __func__); - mutex_lock(&writelock); if ((cp != NULL) && (count > 0) && (this_tty != NULL)) @@ -225,8 +218,6 @@ static int __init n_tracesink_init(void) { int retval; - pr_debug("%s(%s): called\n", __FILE__, __func__); - /* Note N_TRACESINK is defined in linux/tty.h */ retval = tty_register_ldisc(N_TRACESINK, &tty_n_tracesink); |