summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOmri Iluz <omri@iluz.net>2013-10-07 04:09:12 -0700
committerPete Batard <pete@akeo.ie>2013-10-08 23:38:28 +0100
commit7b62a0a171ac0141a3d12237ab496c49cccd79df (patch)
treeeb1454f4c30b16def694a91a3243eb813a20393c
parent3d84bba0a7ff2d9e28f5aac43775f9a267caa4e8 (diff)
downloadlibusb-7b62a0a171ac0141a3d12237ab496c49cccd79df.tar.gz
Windows: Add support for VIA VL805 USB 3.0 Host Controllers
* These controllers identify themselves as VUSB3HUB * Closes #152
-rw-r--r--libusb/os/windows_usb.c2
-rw-r--r--libusb/version_nano.h2
2 files changed, 2 insertions, 2 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"};
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index f919a2f..1fc3694 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10846
+#define LIBUSB_NANO 10847