summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorAndrew Hsieh <andrewhsieh@google.com>2012-01-19 09:55:28 -0800
committerAndroid Git Automerger <android-git-automerger@android.com>2012-01-19 09:55:28 -0800
commit80d50a4c99610334498d23f19932ee782756f4e7 (patch)
tree2d70dbd8d380af00e829685d9c683b0a6c4c9cd9 /adb
parent7abfff55a3436ea97d15c76719d95ea6721a38c2 (diff)
parent4779e9344bb62208e4772ff6486b6df564f434b8 (diff)
downloadsystem_core-80d50a4c99610334498d23f19932ee782756f4e7.zip
system_core-80d50a4c99610334498d23f19932ee782756f4e7.tar.gz
system_core-80d50a4c99610334498d23f19932ee782756f4e7.tar.bz2
am 4779e934: Add Intel\'s vendor ID to adb
* commit '4779e9344bb62208e4772ff6486b6df564f434b8': Add Intel's vendor ID to adb
Diffstat (limited to 'adb')
-rw-r--r--adb/usb_vendors.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c
index f67e883..a8b0ca2 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -115,7 +115,8 @@
#define VENDOR_ID_FUJITSU 0x04C5
// Lumigon's USB Vendor ID
#define VENDOR_ID_LUMIGON 0x25E3
-
+//Intel's USB Vendor ID
+#define VENDOR_ID_INTEL 0x8087
/** built-in vendor list */
int builtInVendorIds[] = {
@@ -159,6 +160,7 @@ int builtInVendorIds[] = {
VENDOR_ID_POSITIVO,
VENDOR_ID_FUJITSU,
VENDOR_ID_LUMIGON,
+ VENDOR_ID_INTEL,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))