diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-31 18:23:26 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-03-31 18:23:26 +0000 |
commit | e126cf13ee2b88949409c1c93bcf27413e97b241 (patch) | |
tree | 55728ad382b3dd0cb18d16651659efb8fafae33b /hw/usb-hid.c | |
parent | Malta CBUS UART support. (diff) | |
download | qemu-kvm-e126cf13ee2b88949409c1c93bcf27413e97b241.tar.gz qemu-kvm-e126cf13ee2b88949409c1c93bcf27413e97b241.tar.bz2 qemu-kvm-e126cf13ee2b88949409c1c93bcf27413e97b241.zip |
Fix usb hid and mass-storage protocol revision, by Juergen Keil.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2558 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'hw/usb-hid.c')
-rw-r--r-- | hw/usb-hid.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb-hid.c b/hw/usb-hid.c index 1c2f4d231..720c4d280 100644 --- a/hw/usb-hid.c +++ b/hw/usb-hid.c @@ -46,7 +46,7 @@ typedef struct USBMouseState { static const uint8_t qemu_mouse_dev_descriptor[] = { 0x12, /* u8 bLength; */ 0x01, /* u8 bDescriptorType; Device */ - 0x10, 0x00, /* u16 bcdUSB; v1.0 */ + 0x00, 0x01, /* u16 bcdUSB; v1.0 */ 0x00, /* u8 bDeviceClass; */ 0x00, /* u8 bDeviceSubClass; */ |