From f71f068fb9082ad78c78493c1295074e88a5526c Mon Sep 17 00:00:00 2001
From: Xavier Ducrohet <xav@android.com>
Date: Thu, 21 Jan 2010 17:24:36 -0800
Subject: [PATCH] Add DELL's USB Vendor ID to adb - DO NOT MERGE

Change-Id: Ie1a6b6a81f50956362aee2a2d6d1b805f0e85b7a
---
 adb/usb_vendors.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c
index 064abc008a..bd586d015d 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -51,6 +51,8 @@
 #define VENDOR_ID_ACER          0x0502
 // Sony Ericsson's USB Vendor ID
 #define VENDOR_ID_SONY_ERICSSON 0x0FCE
+// Dell's USB Vendor ID
+#define VENDOR_ID_DELL          0x413c
 
 /** built-in vendor list */
 int builtInVendorIds[] = {
@@ -62,6 +64,7 @@ int builtInVendorIds[] = {
     VENDOR_ID_HUAWEI,
     VENDOR_ID_ACER,
     VENDOR_ID_SONY_ERICSSON,
+    VENDOR_ID_DELL,
 };
 
 #define BUILT_IN_VENDOR_COUNT    (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))
-- 
GitLab