Commit 8182266352df123bbe5661d14ded4ef06d866a60
1 parent
54fd9cdf
Fix USB buffer size, by Herbert Xu.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2328 c046a42c-6fe2-441c-8c8c-71466251a162
Showing
1 changed file
with
1 additions
and
1 deletions
hw/usb-uhci.c
| @@ -87,7 +87,7 @@ typedef struct UHCIState { | @@ -87,7 +87,7 @@ typedef struct UHCIState { | ||
| 87 | is to allow multiple pending requests. */ | 87 | is to allow multiple pending requests. */ |
| 88 | uint32_t async_qh; | 88 | uint32_t async_qh; |
| 89 | USBPacket usb_packet; | 89 | USBPacket usb_packet; |
| 90 | - uint8_t usb_buf[1280]; | 90 | + uint8_t usb_buf[2048]; |
| 91 | } UHCIState; | 91 | } UHCIState; |
| 92 | 92 | ||
| 93 | typedef struct UHCI_TD { | 93 | typedef struct UHCI_TD { |