From 246808bedfb35ce8abd6cee434ff5b07a6618e8a Mon Sep 17 00:00:00 2001 From: Xavier Ducrohet Date: Mon, 14 May 2012 15:00:13 -0700 Subject: [PATCH] Add USB Vendor ID for Yulong Coolpad. Bug: 6217375 Change-Id: I8931c42e8d3088cc4df8c6e56b323a7392cad5ef --- adb/usb_vendors.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index a477e4ed7..ed86b34c8 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -123,6 +123,8 @@ #define VENDOR_ID_INQ_MOBILE 0x2314 // Sony's USB Vendor ID #define VENDOR_ID_SONY 0x054C +// Yulong Coolpad's USB Vendor ID +#define VENDOR_ID_YULONG_COOLPAD 0x1EBF /** built-in vendor list */ int builtInVendorIds[] = { @@ -170,6 +172,7 @@ int builtInVendorIds[] = { VENDOR_ID_QUANTA, VENDOR_ID_INQ_MOBILE, VENDOR_ID_SONY, + VENDOR_ID_YULONG_COOLPAD, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))