[PATCHv6 2/7] USB: gadget: g_multi: fixed vendor and product ID

Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
From: Michal Nazarewicz
Date: Thursday, August 5, 2010 - 3:27 am

This patch fixes the vendor and product ID the gadget uses
by replacing the temporary IDs that were used during
development (which should never get into mainline) with
proper IDs.

Signed-off-by: Michal Nazarewicz <m.nazarewicz@samsung.com>
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
 drivers/usb/gadget/multi.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/gadget/multi.c b/drivers/usb/gadget/multi.c
index 795d762..36d67a3 100644
--- a/drivers/usb/gadget/multi.c
+++ b/drivers/usb/gadget/multi.c
@@ -74,8 +74,8 @@ MODULE_LICENSE("GPL");
 
 /***************************** Device Descriptor ****************************/
 
-#define MULTI_VENDOR_NUM	0x0525	/* XXX NetChip */
-#define MULTI_PRODUCT_NUM	0xa4ab	/* XXX */
+#define MULTI_VENDOR_NUM	0x1d6b	/* Linux Foundation */
+#define MULTI_PRODUCT_NUM	0x0104	/* Multifunction Composite Gadget */
 
 
 enum {
-- 
1.7.1

--
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCHv6 2/7] USB: gadget: g_multi: fixed vendor and produ ..., Michal Nazarewicz, (Thu Aug 5, 3:27 am)
[PATCHv6 3/7] USB: gadget: g_ffs: fixed vendor and product ID, Michal Nazarewicz, (Thu Aug 5, 3:27 am)
[PATCHv6 6/7] USB: gadget: functionfs: code cleanup, Michal Nazarewicz, (Thu Aug 5, 3:27 am)