summaryrefslogtreecommitdiff
path: root/libusb
diff options
context:
space:
mode:
authorChris Dickens <christopher.a.dickens@gmail.com>2018-01-08 22:03:49 -0800
committerChris Dickens <christopher.a.dickens@gmail.com>2018-01-08 22:03:49 -0800
commit7a91d7cdccaa7dfc3db0828a5230d6260e9338d7 (patch)
tree2efe0b781027696a9f63c89c4d8e8188faae527d /libusb
parent55ced7746dd697024f2042aca009b7436892bf2b (diff)
downloadlibusb-7a91d7cdccaa7dfc3db0828a5230d6260e9338d7.tar.gz
core: Add definition for LIBUSB_SUPER_SPEED_PLUS (10Gb/s)
Signed-off-by: Chris Dickens <christopher.a.dickens@gmail.com>
Diffstat (limited to 'libusb')
-rw-r--r--libusb/libusb.h3
-rw-r--r--libusb/version_nano.h2
2 files changed, 4 insertions, 1 deletions
diff --git a/libusb/libusb.h b/libusb/libusb.h
index e3755a0..430136b 100644
--- a/libusb/libusb.h
+++ b/libusb/libusb.h
@@ -983,6 +983,9 @@ enum libusb_speed {
/** The device is operating at super speed (5000MBit/s). */
LIBUSB_SPEED_SUPER = 4,
+
+ /** The device is operating at super speed plus (10000MBit/s). */
+ LIBUSB_SPEED_SUPER_PLUS = 5,
};
/** \ingroup libusb_dev
diff --git a/libusb/version_nano.h b/libusb/version_nano.h
index f2e6efa..1c458d5 100644
--- a/libusb/version_nano.h
+++ b/libusb/version_nano.h
@@ -1 +1 @@
-#define LIBUSB_NANO 11287
+#define LIBUSB_NANO 11288