From f60e8638282d66c108f1e1dea030856312f65892 Mon Sep 17 00:00:00 2001 From: "Wu, Hao" Date: Tue, 17 Jan 2012 12:04:11 -0800 Subject: 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 Signed-off-by: Jack Ren --- adb/usb_vendors.c | 3 +++ 1 file changed, 3 insertions(+) (limited to 'adb/usb_vendors.c') diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 06f21dd..7ae6372 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -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 @@ -116,6 +118,7 @@ /** built-in vendor list */ int builtInVendorIds[] = { VENDOR_ID_GOOGLE, + VENDOR_ID_INTEL, VENDOR_ID_HTC, VENDOR_ID_SAMSUNG, VENDOR_ID_MOTOROLA, -- cgit v1.1