aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorErik Gilling <konkers@android.com>2010-01-21 15:24:44 -0800
committerAndroid (Google) Code Review <android-gerrit@google.com>2010-01-21 15:24:44 -0800
commit25eab084c5bc6b6ed68001b4f67ca405fc541fcb (patch)
treeb2c130533bdeec18f7d2db3ffefda4fb408b5940
parentd89a501f8fff097b023a43e577e2d93e4f6278eb (diff)
parent6ac5e192997478ae166981ddf66136c865d21a40 (diff)
downloadsystem_core-25eab084c5bc6b6ed68001b4f67ca405fc541fcb.tar.gz
system_core-25eab084c5bc6b6ed68001b4f67ca405fc541fcb.tar.bz2
system_core-25eab084c5bc6b6ed68001b4f67ca405fc541fcb.zip
Merge "adb: add Nvidia's vendor id to adb"
-rw-r--r--adb/usb_vendors.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c
index 203c006b..b98c8ad1 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -55,6 +55,8 @@
#define VENDOR_ID_FOXCONN 0x0489
// Dell's USB Vendor ID
#define VENDOR_ID_DELL 0x413c
+// Nvidia's USB Vendor ID
+#define VENDOR_ID_NVIDIA 0x0955
/** built-in vendor list */
@@ -69,6 +71,7 @@ int builtInVendorIds[] = {
VENDOR_ID_SONY_ERICSSON,
VENDOR_ID_FOXCONN,
VENDOR_ID_DELL,
+ VENDOR_ID_NVIDIA,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))