search for: qemu_mouse_dev_descriptor

Displaying 1 result from an estimated 1 matches for "qemu_mouse_dev_descriptor".

2007 Mar 12
0
[PATCH] fix usb hid and mass-storage protocol revision
...rt "USB 1.0" protocol. -------------- next part -------------- diff -ru /tmp/qemu-cvs/hw/usb-hid.c qemu-cvs/hw/usb-hid.c --- /tmp/qemu-cvs/hw/usb-hid.c 2006-08-29 20:11:47.000000000 +0200 +++ qemu-cvs/hw/usb-hid.c 2007-01-28 12:58:21.779608666 +0100 @@ -45,7 +45,7 @@ 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; */ diff -ru /tmp/qemu-cvs/hw/usb-msd.c qemu-cvs/hw/usb-msd.c...