summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2013-08-16 22:32:20 +0000
committerGerrit Code Review <noreply-gerritcodereview@google.com>2013-08-16 22:32:20 +0000
commitb3644d8f6b6485769c7712aaf7749d042aacbc09 (patch)
tree602fc90281750da02beb77e041df5e9f1f168bdc /adb
parent936032b46be4fbf8a62fbaf7e4ab4cfa863fef90 (diff)
parent64a602942e159c73ceee5c584064f364137d1f47 (diff)
downloadsystem_core-b3644d8f6b6485769c7712aaf7749d042aacbc09.zip
system_core-b3644d8f6b6485769c7712aaf7749d042aacbc09.tar.gz
system_core-b3644d8f6b6485769c7712aaf7749d042aacbc09.tar.bz2
Merge "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]))