diff options
author | Colin Cross <ccross@android.com> | 2013-03-29 22:18:06 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2013-03-29 22:18:06 +0000 |
commit | 352004220a4ae6161d031a20380d862fe482b70d (patch) | |
tree | 4cc0ac47b355cb886e473deb76f9ee377518b199 /adb | |
parent | 9b32f87a8c489a15baea535800b7c309014bd0ee (diff) | |
parent | 92eb5838336d52b415472a9a9df703a99328b194 (diff) | |
download | system_core-352004220a4ae6161d031a20380d862fe482b70d.zip system_core-352004220a4ae6161d031a20380d862fe482b70d.tar.gz system_core-352004220a4ae6161d031a20380d862fe482b70d.tar.bz2 |
Merge changes I0694ed72,I9f0622e0,Ib8c5196c
* changes:
Add BYD's USB Vendor ID
Add USB Vendor ID for Xiaomi
Add vendor IDs to adb
Diffstat (limited to 'adb')
-rwxr-xr-x[-rw-r--r--] | adb/usb_vendors.c | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 3a8e8fd..604c461 100644..100755 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -131,6 +131,16 @@ #define VENDOR_ID_KOBO 0x2237 // Teleepoch's USB Vendor ID #define VENDOR_ID_TELEEPOCH 0x2340 +// AnyDATA's USB Vendor ID +#define VENDOR_ID_ANYDATA 0x16D5 +// Harris's USB Vendor ID +#define VENDOR_ID_HARRIS 0x19A5 +// OPPO's USB Vendor ID +#define VENDOR_ID_OPPO 0x22D9 +// Xiaomi's USB Vendor ID +#define VENDOR_ID_XIAOMI 0x2717 +// BYD's USB Vendor ID +#define VENDOR_ID_BYD 0x19D1 /** built-in vendor list */ @@ -183,6 +193,11 @@ int builtInVendorIds[] = { VENDOR_ID_YULONG_COOLPAD, VENDOR_ID_KOBO, VENDOR_ID_TELEEPOCH, + VENDOR_ID_ANYDATA, + VENDOR_ID_HARRIS, + VENDOR_ID_OPPO, + VENDOR_ID_XIAOMI, + VENDOR_ID_BYD, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |