diff options
author | Elliott Hughes <enh@google.com> | 2013-07-25 09:58:12 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-07-25 09:58:12 -0700 |
commit | b815810f477aa39e28705dda1713152927e5adc6 (patch) | |
tree | 83ab2179a604d14d9f43c7f39763fe6e0925e70e /adb | |
parent | 80292a7d75208fa4a99e3fb06e0565366cfe4643 (diff) | |
parent | 09f240e0b06326531e64e9826859a774cd456ad7 (diff) | |
download | core-b815810f477aa39e28705dda1713152927e5adc6.tar.gz core-b815810f477aa39e28705dda1713152927e5adc6.tar.bz2 core-b815810f477aa39e28705dda1713152927e5adc6.zip |
am 09f240e0: am 5d855432: Merge "Add USB Vendor ID for ECS"
* commit '09f240e0b06326531e64e9826859a774cd456ad7':
Add USB Vendor ID for ECS
Diffstat (limited to 'adb')
-rw-r--r-- | 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 e132c6721..68bb23284 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -153,6 +153,8 @@ #define VENDOR_ID_NOOK 0x2080 // Qisda's USB Vendor ID #define VENDOR_ID_QISDA 0x1D45 +// ECS's USB Vendor ID +#define VENDOR_ID_ECS 0x03fc /** built-in vendor list */ @@ -216,6 +218,7 @@ int builtInVendorIds[] = { VENDOR_ID_MTK, VENDOR_ID_NOOK, VENDOR_ID_QISDA, + VENDOR_ID_ECS, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |