From: ths Date: Wed, 17 Jan 2007 23:08:17 +0000 (+0000) Subject: Fix USB buffer size, by Herbert Xu. X-Git-Tag: release_0_9_1~1567 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=be7c65a72ed74a822a6baa295fb7939646eba92a;p=qemu-xen-4.4-testing.git Fix USB buffer size, by Herbert Xu. --- diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 29809f96b..f0b1e2e44 100644 --- a/hw/usb-uhci.c +++ b/hw/usb-uhci.c @@ -87,7 +87,7 @@ typedef struct UHCIState { is to allow multiple pending requests. */ uint32_t async_qh; USBPacket usb_packet; - uint8_t usb_buf[1280]; + uint8_t usb_buf[2048]; } UHCIState; typedef struct UHCI_TD {