summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-08-16 15:35:05 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2013-08-16 15:35:05 -0700
commit3042c265bf3123426e99fed856c9d3b7fa3b3ad6 (patch)
tree4ccef4a807e4832e7df5441818244d120d7faccd /adb
parentcc39d421ea5f449d5e201dd1ada7b2a12acf5ad9 (diff)
parentb3644d8f6b6485769c7712aaf7749d042aacbc09 (diff)
downloadsystem_core-3042c265bf3123426e99fed856c9d3b7fa3b3ad6.zip
system_core-3042c265bf3123426e99fed856c9d3b7fa3b3ad6.tar.gz
system_core-3042c265bf3123426e99fed856c9d3b7fa3b3ad6.tar.bz2
am b3644d8f: Merge "Add USB Vendor ID for WACOM"
* commit 'b3644d8f6b6485769c7712aaf7749d042aacbc09': Add USB Vendor ID for WACOM
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 93dda5d..4c0eec5 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -157,7 +157,8 @@
#define VENDOR_ID_ECS 0x03fc
// MSI's USB Vendor ID
#define VENDOR_ID_MSI 0x1462
-
+// Wacom's USB Vendor ID
+#define VENDOR_ID_WACOM 0x0531
/** built-in vendor list */
int builtInVendorIds[] = {
@@ -222,6 +223,7 @@ int builtInVendorIds[] = {
VENDOR_ID_QISDA,
VENDOR_ID_ECS,
VENDOR_ID_MSI,
+ VENDOR_ID_WACOM,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))