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 | d4390c2f5591a486588624fc3f42c3d17d5b03de (patch) | |
tree | 182905278e4214c704ac58fd65286f4bd73f9470 /drivers | |
parent | 7975c0d82e32d5fcfe6f700b875d2225c531c4c5 (diff) | |
download | mrst-s0i3-test-d4390c2f5591a486588624fc3f42c3d17d5b03de.tar.gz mrst-s0i3-test-d4390c2f5591a486588624fc3f42c3d17d5b03de.tar.xz mrst-s0i3-test-d4390c2f5591a486588624fc3f42c3d17d5b03de.zip |
This patch removes all pr_debug's for n_tracerouter ldisc driver.
Signed-off-by: J Freyensee <james_p_freyensee@linux.intel.com>
Signed-off-by: Alan Cox <alan@linux.intel.com>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/tty/n_tracerouter.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/drivers/tty/n_tracerouter.c b/drivers/tty/n_tracerouter.c index ea6bff1bcf4..7ccb8e862e1 100644 --- a/drivers/tty/n_tracerouter.c +++ b/drivers/tty/n_tracerouter.c @@ -108,10 +108,6 @@ static int n_tracerouter_open(struct tty_struct *tty) } } mutex_unlock(&routelock); - - pr_debug("%s(%s): called. Return value %d\n", - __FILE__, __func__, retval); - return retval; } @@ -133,9 +129,6 @@ static void n_tracerouter_close(struct tty_struct *tty) tr_data->opencalled = 0; tty->disc_data = NULL; mutex_unlock(&routelock); - - pr_debug("%s(%s): called.\n", - __FILE__, __func__); } /** @@ -200,8 +193,6 @@ static void n_tracerouter_receivebuf(struct tty_struct *tty, const unsigned char *cp, char *fp, int count) { - pr_debug("%s(%s): calling n_tracesink_datadrain()\n", __FILE__, - __func__); mutex_lock(&routelock); n_tracesink_datadrain((u8 *) cp, count); mutex_unlock(&routelock); |