aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb
diff options
context:
space:
mode:
authorTatyana Brokhman <tlinder@codeaurora.org>2011-06-29 09:41:49 -0400
committerGreg Kroah-Hartman <gregkh@suse.de>2011-07-01 17:27:05 -0400
commit35a0e0bf6f6b2b900d461e9f35c286953b2b1afc (patch)
treeb052f9d8c8bdcde4663d4e3a27c23541bf05b586 /include/linux/usb
parent9ea35331d052a5af1ba4e6244c52485f82587b60 (diff)
usb: gadget: add max_speed to usb_composite_driver
This field is used by the Gadget drivers to specify the maximum speed they support, meaning: the maximum speed they can provide descriptors for. The driver speed will be set in consideration of this value. [ balbi@ti.com : dropped the ifdeffery ] Signed-off-by: Tatyana Brokhman <tlinder@codeaurora.org> Signed-off-by: Felipe Balbi <balbi@ti.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'include/linux/usb')
-rw-r--r--include/linux/usb/composite.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/linux/usb/composite.h b/include/linux/usb/composite.h
index 99830d63d8f1..a3e72dfa6996 100644
--- a/include/linux/usb/composite.h
+++ b/include/linux/usb/composite.h
@@ -240,6 +240,7 @@ int usb_add_config(struct usb_composite_dev *,
240 * identifiers. 240 * identifiers.
241 * @strings: tables of strings, keyed by identifiers assigned during bind() 241 * @strings: tables of strings, keyed by identifiers assigned during bind()
242 * and language IDs provided in control requests 242 * and language IDs provided in control requests
243 * @max_speed: Highest speed the driver supports.
243 * @needs_serial: set to 1 if the gadget needs userspace to provide 244 * @needs_serial: set to 1 if the gadget needs userspace to provide
244 * a serial number. If one is not provided, warning will be printed. 245 * a serial number. If one is not provided, warning will be printed.
245 * @unbind: Reverses bind; called as a side effect of unregistering 246 * @unbind: Reverses bind; called as a side effect of unregistering
@@ -267,6 +268,7 @@ struct usb_composite_driver {
267 const char *iManufacturer; 268 const char *iManufacturer;
268 const struct usb_device_descriptor *dev; 269 const struct usb_device_descriptor *dev;
269 struct usb_gadget_strings **strings; 270 struct usb_gadget_strings **strings;
271 enum usb_device_speed max_speed;
270 unsigned needs_serial:1; 272 unsigned needs_serial:1;
271 273
272 int (*unbind)(struct usb_composite_dev *); 274 int (*unbind)(struct usb_composite_dev *);