diff options
author | DanielMo <DanielMo@fih-foxconn.com> | 2013-08-26 18:36:11 +0800 |
---|---|---|
committer | Colin Cross <ccross@android.com> | 2014-01-06 12:16:39 -0800 |
commit | d5dab6d5f85e7c03f08614918088a33ce73abcf5 (patch) | |
tree | aa9b6c8360cf3b13d49fb2954a5bdeaaa2710329 | |
parent | 319d8c1d1f5e11e971125bb244e9afca25bce592 (diff) | |
download | system_core-d5dab6d5f85e7c03f08614918088a33ce73abcf5.zip system_core-d5dab6d5f85e7c03f08614918088a33ce73abcf5.tar.gz system_core-d5dab6d5f85e7c03f08614918088a33ce73abcf5.tar.bz2 |
adb: Add USB vendor ID for Amlogic
Change-Id: I35fad82214f2b5a82b0150821326aaea15784de1
Signed-off-by: DanielMo <DanielMo@fih-foxconn.com>
-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 f4196c7..7a8e972 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 +// Amlogic's USB Vendor ID +#define VENDOR_ID_AMLOGIC 0x1b8e // AnyDATA's USB Vendor ID #define VENDOR_ID_ANYDATA 0x16D5 // Archos's USB Vendor ID @@ -168,6 +170,7 @@ /* Keep the list below sorted alphabetically */ int builtInVendorIds[] = { VENDOR_ID_ACER, + VENDOR_ID_AMLOGIC, VENDOR_ID_ANYDATA, VENDOR_ID_ARCHOS, VENDOR_ID_ASUS, |