summaryrefslogtreecommitdiffstats
path: root/hw/usb-uhci.c
diff options
context:
space:
mode:
authorths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-01-17 23:08:17 +0000
committerths <ths@c046a42c-6fe2-441c-8c8c-71466251a162>2007-01-17 23:08:17 +0000
commit8182266352df123bbe5661d14ded4ef06d866a60 (patch)
treef634b2adb79d87f61722e9bf08f773a5be1ad87e /hw/usb-uhci.c
parent54fd9cdfb468c1d701ffff168b76a433b73a95c6 (diff)
downloadhqemu-8182266352df123bbe5661d14ded4ef06d866a60.zip
hqemu-8182266352df123bbe5661d14ded4ef06d866a60.tar.gz
Fix USB buffer size, by Herbert Xu.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2328 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-uhci.c')
-rw-r--r--hw/usb-uhci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c
index 29809f9..f0b1e2e 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 {
OpenPOWER on IntegriCloud