diff options
author | Mike Lockwood <lockwood%android.com@gtempaccount.com> | 2011-08-15 10:25:47 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-08-15 10:25:47 -0700 |
commit | 549bfcda6df30dd00db254b3717fc8df463ce710 (patch) | |
tree | 0a50b304ddbca87edf11c5934fededca2374c583 /adb | |
parent | d18dc0057988df70b375a453bfc7a188e2ed2891 (diff) | |
parent | 003771d1c0ad6c3c6cd0c82f787636111c9e193c (diff) | |
download | system_core-549bfcda6df30dd00db254b3717fc8df463ce710.zip system_core-549bfcda6df30dd00db254b3717fc8df463ce710.tar.gz system_core-549bfcda6df30dd00db254b3717fc8df463ce710.tar.bz2 |
am 003771d1: am 80d508fd: Merge "correct VID of Lenovo(0x2006 is for LenovoMobile,0x17EF is for Lenovo)"
* commit '003771d1c0ad6c3c6cd0c82f787636111c9e193c':
correct VID of Lenovo(0x2006 is for LenovoMobile,0x17EF is for Lenovo)
Diffstat (limited to 'adb')
-rw-r--r-- | adb/usb_vendors.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 141b32a..e0c6a47 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -97,8 +97,10 @@ #define VENDOR_ID_COMPAL 0x1219 // T & A Mobile Phones' USB Vendor ID #define VENDOR_ID_T_AND_A 0x1BBB +// LenovoMobile's USB Vendor ID +#define VENDOR_ID_LENOVOMOBILE 0x2006 // Lenovo's USB Vendor ID -#define VENDOR_ID_LENOVO 0x2006 +#define VENDOR_ID_LENOVO 0x17EF // Vizio's USB Vendor ID #define VENDOR_ID_VIZIO 0xE040 @@ -136,6 +138,7 @@ int builtInVendorIds[] = { VENDOR_ID_IRIVER, VENDOR_ID_COMPAL, VENDOR_ID_T_AND_A, + VENDOR_ID_LENOVOMOBILE, VENDOR_ID_LENOVO, VENDOR_ID_VIZIO, }; |