summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicholas Corgan <nick.corgan@ettus.com>2012-08-20 13:32:24 -0700
committerPete Batard <pete@akeo.ie>2012-08-22 00:05:59 +0100
commit1421e31ec5f982cf570564617c788b7992e781ea (patch)
tree4c2c4c236141f9c49ccf5f76a6510a6da41f51bb
parentf2b19e4a32c1445f4fea06beca61e8c7e7757950 (diff)
downloadlibusb-1421e31ec5f982cf570564617c788b7992e781ea.tar.gz
Windows: Add support for 2nd gen Renesas USB 3.0 controllers
* Driver version 3.0.20.0 for uPD720201 & uPD720202 uses RUSB3HUB * Closes #40
-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 6f472b8..e843bce 100644
--- a/libusb/os/windows_usb.c
+++ b/libusb/os/windows_usb.c
@@ -2370,7 +2370,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", "FLXHCIH", "TIHUB3", "ETRONHUB3", "VIAHUB3", "ASMTHUB3", "IUSB3HUB"};
+const char* hub_driver_names[] = {"USBHUB", "USBHUB3", "NUSB3HUB", "RUSB3HUB", "FLXHCIH", "TIHUB3", "ETRONHUB3", "VIAHUB3", "ASMTHUB3", "IUSB3HUB"};
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 c4122ea..6d70b12 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 10550
+#define LIBUSB_NANO 10551