diff options
author | Mike Lockwood <lockwood@android.com> | 2011-02-09 09:38:26 -0500 |
---|---|---|
committer | Dan Willemsen <dwillemsen@nvidia.com> | 2011-11-30 21:38:29 -0800 |
commit | e9ddd0410bddcb7db3b1c8a0969616c276af7398 (patch) | |
tree | 953b2857e170dc518db3bd6f5bba3ed9d780fa39 /include/linux/usb | |
parent | a693c7b59c50bf26fdc1daf586300d1d5a8163c0 (diff) |
USB: gadget: android: Support switching vendor ID when configuration changes
Based on the list of enabled USB functions, we can now switch the vendor ID
as well as the product ID.
Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'include/linux/usb')
-rw-r--r-- | include/linux/usb/android_composite.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/usb/android_composite.h b/include/linux/usb/android_composite.h index 62e72e3bd2b6..7f9000711f4e 100644 --- a/include/linux/usb/android_composite.h +++ b/include/linux/usb/android_composite.h @@ -27,7 +27,12 @@ struct android_usb_function { }; struct android_usb_product { - /* Default product ID. */ + /* Vendor ID for this set of functions. + * Default vendor_id in platform data will be used if this is zero. + */ + __u16 vendor_id; + + /* Product ID for this set of functions. */ __u16 product_id; /* List of function names associated with this product. |