diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-17 23:08:17 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-01-17 23:08:17 +0000 |
commit | 8182266352df123bbe5661d14ded4ef06d866a60 (patch) | |
tree | f634b2adb79d87f61722e9bf08f773a5be1ad87e /hw/usb-uhci.c | |
parent | 54fd9cdfb468c1d701ffff168b76a433b73a95c6 (diff) |
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.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-uhci.c b/hw/usb-uhci.c index 29809f96bf..f0b1e2e445 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 { |