summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorTakeshi Kishimoto <kishimoto@google.com>2010-06-18 09:37:35 +0800
committerJean-Baptiste Queru <jbq@google.com>2010-07-21 10:20:54 -0700
commit81fbbc2d0b3db4eb9565fd8367db00a6dc1c9c66 (patch)
treed087bb4f8730769abeced97137bbd9a252686512 /adb
parent899913f8168b54e00971c0e8d4ae16d06a4651fe (diff)
downloadsystem_core-81fbbc2d0b3db4eb9565fd8367db00a6dc1c9c66.zip
system_core-81fbbc2d0b3db4eb9565fd8367db00a6dc1c9c66.tar.gz
system_core-81fbbc2d0b3db4eb9565fd8367db00a6dc1c9c66.tar.bz2
Added NEC and PMC's USB VIDs upon their request.
Change-Id: I332ee1e68ff960d41a365aeb96d012253056edd2
Diffstat (limited to 'adb')
-rw-r--r--adb/usb_vendors.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c
index db8b018..993206f 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -71,6 +71,10 @@
#define VENDOR_ID_QUALCOMM 0x05c6
// On-The-Go-Video's USB Vendor ID
#define VENDOR_ID_OTGV 0x2257
+// NEC's USB Vendor ID
+#define VENDOR_ID_NEC 0x0409
+// Panasonic Mobile Communication's USB Vendor ID
+#define VENDOR_ID_PMC 0x04DA
/** built-in vendor list */
@@ -93,6 +97,8 @@ int builtInVendorIds[] = {
VENDOR_ID_PANTECH,
VENDOR_ID_QUALCOMM,
VENDOR_ID_OTGV,
+ VENDOR_ID_NEC,
+ VENDOR_ID_PMC,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))