[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 8/9] usb: mtp: drop data-out hexdump
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 8/9] usb: mtp: drop data-out hexdump |
Date: |
Fri, 25 Apr 2014 12:48:13 +0200 |
Signed-off-by: Gerd Hoffmann <address@hidden>
---
hw/usb/dev-mtp.c | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/hw/usb/dev-mtp.c b/hw/usb/dev-mtp.c
index 536a23d..6bd6a82 100644
--- a/hw/usb/dev-mtp.c
+++ b/hw/usb/dev-mtp.c
@@ -1014,8 +1014,7 @@ static void usb_mtp_handle_data(USBDevice *dev, USBPacket
*p)
usb_mtp_command(s, &cmd);
break;
default:
- iov_hexdump(p->iov.iov, p->iov.niov, stderr, "mtp-out", 32);
- trace_usb_mtp_stall(s->dev.addr, "TODO: implement data-out");
+ /* not needed as long as the mtp device is read-only */
p->status = USB_RET_STALL;
return;
}
--
1.8.3.1
- [Qemu-devel] [PATCH 0/9] usb: mtp: a bunch of fixes, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 2/9] usb: mtp: fix usb_mtp_add_u64, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 1/9] usb: mtp: replace debug printfs with trace points, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 7/9] usb: mtp: avoid empty description string, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 9/9] usb: mtp: reply INCOMPLETE_TRANSFER on read errors, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 5/9] usb: mtp: fix error path memory leak, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 8/9] usb: mtp: drop data-out hexdump,
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 6/9] usb: mtp: fix possible buffer overflow, Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 3/9] usb: mtp: fix version (is decimal not bcd), Gerd Hoffmann, 2014/04/25
- [Qemu-devel] [PATCH 4/9] usb: mtp: fix serial (must be exact 32 chars), Gerd Hoffmann, 2014/04/25
- Re: [Qemu-devel] [PATCH 0/9] usb: mtp: a bunch of fixes, Peter Wu, 2014/04/25