diff options
author | Wu, Hao <hao.wu@intel.com> | 2012-01-17 12:04:11 -0800 |
---|---|---|
committer | Mark D Horn <mark.d.horn@intel.com> | 2012-01-17 12:08:06 -0800 |
commit | f60e8638282d66c108f1e1dea030856312f65892 (patch) | |
tree | 1d12f9af2e691065d97c7a346f455a7a7b51b2e6 /fastboot | |
parent | e7b1f132c2a324af89080bc43968b7222b40ddfa (diff) | |
download | system_core-f60e8638282d66c108f1e1dea030856312f65892.zip system_core-f60e8638282d66c108f1e1dea030856312f65892.tar.gz system_core-f60e8638282d66c108f1e1dea030856312f65892.tar.bz2 |
adb,fastboot: add USB support for Intel Vendor ID
This patch adds Intel USB Vendor ID into the support
list for adb and fastboot.
Signed-off-by: Wu, Hao <hao.wu@intel.com>
Signed-off-by: Jack Ren <jack.ren@intel.com>
Diffstat (limited to 'fastboot')
-rw-r--r-- | fastboot/fastboot.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fastboot/fastboot.c b/fastboot/fastboot.c index 4a2de20..fe0af7a 100644 --- a/fastboot/fastboot.c +++ b/fastboot/fastboot.c @@ -150,6 +150,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 |