diff options
author | Mike Lockwood <lockwood@android.com> | 2011-02-09 09:38:26 -0500 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2011-06-14 09:09:53 -0700 |
commit | aecca43f09d029eb98bec88b6da3b3c6897e42f5 (patch) | |
tree | 10e0615a2b05f5444cafcbebd18f359713c7ab24 /include/linux/usb/android_composite.h | |
parent | 6bb1acf2eba2dd5200bd935286b3d9f130b71c3b (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/android_composite.h')
-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 62e72e3bd2b..7f9000711f4 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. |