diff options
author | Elliott Hughes <enh@google.com> | 2014-09-10 18:13:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2014-09-10 18:13:07 +0000 |
commit | c4ff03899dd6259299c90e9b9e344ec737cd77e4 (patch) | |
tree | 086ef88d4be0cb24b4f9f15efd694f7ccb850109 | |
parent | da3510b27246de1ab3eda38a14a80839e2f39c64 (diff) | |
parent | 553630e4233251f905ffc90e44cdc6f4f16f39e7 (diff) | |
download | system_core-c4ff03899dd6259299c90e9b9e344ec737cd77e4.zip system_core-c4ff03899dd6259299c90e9b9e344ec737cd77e4.tar.gz system_core-c4ff03899dd6259299c90e9b9e344ec737cd77e4.tar.bz2 |
Merge "adb: Add USB vendor ID for Alco Digital Devices Limited"
-rwxr-xr-x | adb/usb_vendors.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 90542e8..1b8310f 100755 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -38,6 +38,8 @@ /* Keep the list below sorted alphabetically by #define name */ // Acer's USB Vendor ID #define VENDOR_ID_ACER 0x0502 +// Alco's USB Vendor ID +#define VENDOR_ID_ALCO 0x1914 // Allwinner's USB Vendor ID #define VENDOR_ID_ALLWINNER 0x1F3A // Amlogic's USB Vendor ID @@ -202,6 +204,7 @@ /* Keep the list below sorted alphabetically */ int builtInVendorIds[] = { VENDOR_ID_ACER, + VENDOR_ID_ALCO, VENDOR_ID_ALLWINNER, VENDOR_ID_AMLOGIC, VENDOR_ID_ANYDATA, |