diff options
author | Gerd Hoffmann <kraxel@redhat.com> | 2012-08-10 13:06:05 +0200 |
---|---|---|
committer | Gerd Hoffmann <kraxel@redhat.com> | 2012-08-16 08:39:49 +0200 |
commit | 0daf53047da0b817e40c4931580e59e73b420f41 (patch) | |
tree | 44e76b067cc5ecb76ddc9c867aca02e219477883 | |
parent | c19537a1143d493897850576394f082914f39ef1 (diff) | |
download | qemu-0daf53047da0b817e40c4931580e59e73b420f41.tar.gz qemu-0daf53047da0b817e40c4931580e59e73b420f41.tar.bz2 qemu-0daf53047da0b817e40c4931580e59e73b420f41.zip |
usb: update uas product id
Pick other product id to fix clash with audio.
Current usage list (after applying this patch):
46f4:0001 -- usb-storage
46f4:0002 -- usb-audio
46f4:0003 -- usb-uas
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | hw/usb/dev-uas.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hw/usb/dev-uas.c b/hw/usb/dev-uas.c index 9b02ff48fa..b13eeba565 100644 --- a/hw/usb/dev-uas.c +++ b/hw/usb/dev-uas.c @@ -223,7 +223,7 @@ static const USBDescDevice desc_device_high = { static const USBDesc desc = { .id = { .idVendor = 0x46f4, /* CRC16() of "QEMU" */ - .idProduct = 0x0002, + .idProduct = 0x0003, .bcdDevice = 0, .iManufacturer = STR_MANUFACTURER, .iProduct = STR_PRODUCT, |