diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-02-11 19:01:48 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-02-11 19:01:48 +0000 |
commit | f2f1ac827d9867db4444498a64582595b001e40f (patch) | |
tree | 7008e7fa3f7456af37d53a883f7c7a8b9d8744ec /hw/usb-hid.c | |
parent | Linux userland emulation of prctl, from Debian patchset. (diff) | |
download | qemu-kvm-f2f1ac827d9867db4444498a64582595b001e40f.tar.gz qemu-kvm-f2f1ac827d9867db4444498a64582595b001e40f.tar.bz2 qemu-kvm-f2f1ac827d9867db4444498a64582595b001e40f.zip |
increase USB table poll interval
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@2422 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 bde3a7c67..1c2f4d231 100644 --- a/hw/usb-hid.c +++ b/hw/usb-hid.c @@ -170,7 +170,7 @@ static const uint8_t qemu_tablet_config_descriptor[] = { 0x81, /* u8 ep_bEndpointAddress; IN Endpoint 1 */ 0x03, /* u8 ep_bmAttributes; Interrupt */ 0x08, 0x00, /* u16 ep_wMaxPacketSize; */ - 0x03, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */ + 0x0a, /* u8 ep_bInterval; (255ms -- usb 2.0 spec) */ }; static const uint8_t qemu_mouse_hid_report_descriptor[] = { |