diff options
author | Omri Iluz <omri@iluz.net> | 2013-10-07 04:09:12 -0700 |
---|---|---|
committer | Pete Batard <pete@akeo.ie> | 2013-10-08 23:38:28 +0100 |
commit | 7b62a0a171ac0141a3d12237ab496c49cccd79df (patch) | |
tree | eb1454f4c30b16def694a91a3243eb813a20393c /libusb/os | |
parent | 3d84bba0a7ff2d9e28f5aac43775f9a267caa4e8 (diff) | |
download | libusb-7b62a0a171ac0141a3d12237ab496c49cccd79df.tar.gz |
Windows: Add support for VIA VL805 USB 3.0 Host Controllers
* These controllers identify themselves as VUSB3HUB
* Closes #152
Diffstat (limited to 'libusb/os')
-rw-r--r-- | libusb/os/windows_usb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libusb/os/windows_usb.c b/libusb/os/windows_usb.c index 4493088..b11cb93 100644 --- a/libusb/os/windows_usb.c +++ b/libusb/os/windows_usb.c @@ -2381,7 +2381,7 @@ static int common_configure_endpoints(int sub_api, struct libusb_device_handle * return LIBUSB_SUCCESS; } // These names must be uppercase -const char* hub_driver_names[] = {"USBHUB", "USBHUB3", "NUSB3HUB", "RUSB3HUB", "FLXHCIH", "TIHUB3", "ETRONHUB3", "VIAHUB3", "ASMTHUB3", "IUSB3HUB"}; +const char* hub_driver_names[] = {"USBHUB", "USBHUB3", "NUSB3HUB", "RUSB3HUB", "FLXHCIH", "TIHUB3", "ETRONHUB3", "VIAHUB3", "ASMTHUB3", "IUSB3HUB", "VUSB3HUB"}; const char* composite_driver_names[] = {"USBCCGP"}; const char* winusbx_driver_names[] = WINUSBX_DRV_NAMES; const char* hid_driver_names[] = {"HIDUSB", "MOUHID", "KBDHID"}; |