|
@@ -126,6 +126,10 @@ struct usb_os_desc_table {
|
|
* string identifiers assigned during @bind(). If this
|
|
* string identifiers assigned during @bind(). If this
|
|
* pointer is null after initiation, the function will not
|
|
* pointer is null after initiation, the function will not
|
|
* be available at super speed.
|
|
* be available at super speed.
|
|
|
|
+ * @ssp_descriptors: Table of super speed plus descriptors, using
|
|
|
|
+ * interface and string identifiers assigned during @bind(). If
|
|
|
|
+ * this pointer is null after initiation, the function will not
|
|
|
|
+ * be available at super speed plus.
|
|
* @config: assigned when @usb_add_function() is called; this is the
|
|
* @config: assigned when @usb_add_function() is called; this is the
|
|
* configuration with which this function is associated.
|
|
* configuration with which this function is associated.
|
|
* @os_desc_table: Table of (interface id, os descriptors) pairs. The function
|
|
* @os_desc_table: Table of (interface id, os descriptors) pairs. The function
|
|
@@ -186,6 +190,7 @@ struct usb_function {
|
|
struct usb_descriptor_header **fs_descriptors;
|
|
struct usb_descriptor_header **fs_descriptors;
|
|
struct usb_descriptor_header **hs_descriptors;
|
|
struct usb_descriptor_header **hs_descriptors;
|
|
struct usb_descriptor_header **ss_descriptors;
|
|
struct usb_descriptor_header **ss_descriptors;
|
|
|
|
+ struct usb_descriptor_header **ssp_descriptors;
|
|
|
|
|
|
struct usb_configuration *config;
|
|
struct usb_configuration *config;
|
|
|
|
|