aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHarald Welte <laforge@gnumonks.org>2017-01-01 11:55:34 +0100
committerHarald Welte <laforge@gnumonks.org>2017-01-01 19:51:50 +0100
commitc265c1206d3675c0bb6f7aba5bb9195e8124a878 (patch)
tree0c9b1b3c347bd0e3f0eb5c28defe6605e0cef2ec
parentf1801995212ef82d3d49c6edc240181d36f2803b (diff)
remove Tx/Rx debugging from diag_io.c
-rw-r--r--src/diag_io.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/diag_io.c b/src/diag_io.c
index 087eecf..3e6a9df 100644
--- a/src/diag_io.c
+++ b/src/diag_io.c
@@ -149,14 +149,12 @@ struct msgb *diag_transceive_msg(struct diag_instance *di, struct msgb *tx)
/* transmit the tx message */
diag_transmit_msgb(di, tx);
- printf("Tx, waiting for Rx\n");
/* blocking loop and process incoming messages until there is
* one for which we don't have a parser registered, let's assume
* that this is our response */
while (1) {
rx = diag_read_msg(di);
- printf("Rx, handing off...");
if (rx) {
rc = diag_process_msg(di, rx);
printf("rc = %d\n", rc);