am 70580b20: am 149ae11f: Merge "adb,fastboot: add USB support for Intel Vendor ID"
* commit '70580b20bc8485002df0b3e89e42754c8c9796ff': adb,fastboot: add USB support for Intel Vendor ID
This commit is contained in:
commit
38412163da
|
@ -37,6 +37,8 @@
|
|||
|
||||
// Google's USB Vendor ID
|
||||
#define VENDOR_ID_GOOGLE 0x18d1
|
||||
// Intel's USB Vendor ID
|
||||
#define VENDOR_ID_INTEL 0x8087
|
||||
// HTC's USB Vendor ID
|
||||
#define VENDOR_ID_HTC 0x0bb4
|
||||
// Samsung's USB Vendor ID
|
||||
|
@ -121,6 +123,7 @@
|
|||
/** built-in vendor list */
|
||||
int builtInVendorIds[] = {
|
||||
VENDOR_ID_GOOGLE,
|
||||
VENDOR_ID_INTEL,
|
||||
VENDOR_ID_HTC,
|
||||
VENDOR_ID_SAMSUNG,
|
||||
VENDOR_ID_MOTOROLA,
|
||||
|
|
|
@ -152,6 +152,7 @@ int match_fastboot(usb_ifc_info *info)
|
|||
{
|
||||
if(!(vendor_id && (info->dev_vendor == vendor_id)) &&
|
||||
(info->dev_vendor != 0x18d1) && // Google
|
||||
(info->dev_vendor != 0x8087) && // Intel
|
||||
(info->dev_vendor != 0x0451) &&
|
||||
(info->dev_vendor != 0x0502) &&
|
||||
(info->dev_vendor != 0x0fce) && // Sony Ericsson
|
||||
|
|
Loading…
Reference in New Issue