summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar Stefan Richter 2010-10-15 07:26:24 +0200
committerGravatar Stefan Richter 2010-10-20 21:08:23 +0200
commit20df6877aeea0099e9b0ab73c4f46c66e99fc88b (patch)
tree8c857a4271ed74aa9c1741a57250cc1c3074cb66
parentBe more careful when copying response payloads on firewire-core (diff)
arm on firewire-core: Remove leftover debug printfs
Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
-rw-r--r--src/fw.c6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/fw.c b/src/fw.c
index 9e942da..baa3e93 100644
--- a/src/fw.c
+++ b/src/fw.c
@@ -763,9 +763,6 @@ handle_arm_request(raw1394handle_t handle, struct address_closure *ac,
switch (tcode) {
case TCODE_WRITE_QUADLET_REQUEST:
case TCODE_WRITE_BLOCK_REQUEST:
- printf("got write request, offset=0x%012llx, length=%d\n",
- offset, (int)length);
-
type = RAW1394_ARM_WRITE;
in_length = length;
response.rcode = RCODE_COMPLETE;
@@ -775,9 +772,6 @@ handle_arm_request(raw1394handle_t handle, struct address_closure *ac,
case TCODE_READ_QUADLET_REQUEST:
case TCODE_READ_BLOCK_REQUEST:
- printf("got read request, offset=0x%012llx, length=%d\n",
- offset, (int)length);
-
type = RAW1394_ARM_READ;
in_length = 0;
response.rcode = RCODE_COMPLETE;