diff options
author | DanielMo <DanielMo@fih-foxconn.com> | 2014-09-10 13:58:32 +0800 |
---|---|---|
committer | DanielMo <DanielMo@fih-foxconn.com> | 2014-09-10 13:58:32 +0800 |
commit | 553630e4233251f905ffc90e44cdc6f4f16f39e7 (patch) | |
tree | 278f0e46e4b85b2c3cbbfb4a80277bdb3b6a2bdb /adb | |
parent | 2c805883408339823d3f3ca23aceb08a1783ebbd (diff) | |
download | system_core-553630e4233251f905ffc90e44cdc6f4f16f39e7.zip system_core-553630e4233251f905ffc90e44cdc6f4f16f39e7.tar.gz system_core-553630e4233251f905ffc90e44cdc6f4f16f39e7.tar.bz2 |
adb: Add USB vendor ID for Alco Digital Devices Limited
Change-Id: I50d343d583e688e9f8a72d1c61618b384e310fe1
Signed-off-by: DanielMo <DanielMo@fih-foxconn.com>
Diffstat (limited to 'adb')
-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, |