diff options
| author | Xavier Ducrohet <xav@android.com> | 2011-09-16 17:08:00 -0700 |
|---|---|---|
| committer | Android (Google) Code Review <android-gerrit@google.com> | 2011-09-16 17:08:00 -0700 |
| commit | 1d37ef6ecb25b2c2c974b32e14ce963882c7a699 (patch) | |
| tree | ce46e5c46fc29a5216ab04eb2125f9c1c7a05c78 | |
| parent | 92312a515b0b877deed5dfdbf9d7613e8d66fee5 (diff) | |
| parent | dd52e8c57b5026f70a3ec390d2f9a7809ebd2d85 (diff) | |
| download | system_core-1d37ef6ecb25b2c2c974b32e14ce963882c7a699.tar.gz system_core-1d37ef6ecb25b2c2c974b32e14ce963882c7a699.tar.bz2 system_core-1d37ef6ecb25b2c2c974b32e14ce963882c7a699.zip | |
Merge "Add Positivo's vendor ID 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 a59431bc..06f21dd6 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -98,7 +98,7 @@ // T & A Mobile Phones' USB Vendor ID #define VENDOR_ID_T_AND_A 0x1BBB // LenovoMobile's USB Vendor ID -#define VENDOR_ID_LENOVOMOBILE 0x2006 +#define VENDOR_ID_LENOVOMOBILE 0x2006 // Lenovo's USB Vendor ID #define VENDOR_ID_LENOVO 0x17EF // Vizio's USB Vendor ID @@ -109,6 +109,8 @@ #define VENDOR_ID_PEGATRON 0x1D4D // Archos's USB Vendor ID #define VENDOR_ID_ARCHOS 0x0E79 +// Positivo's USB Vendor ID +#define VENDOR_ID_POSITIVO 0x1662 /** built-in vendor list */ @@ -150,6 +152,7 @@ int builtInVendorIds[] = { VENDOR_ID_K_TOUCH, VENDOR_ID_PEGATRON, VENDOR_ID_ARCHOS, + VENDOR_ID_POSITIVO, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |
