summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@google.com>2010-10-15 18:25:27 -0700
committerAndroid Git Automerger <android-git-automerger@android.com>2010-10-15 18:25:27 -0700
commita8b8c0e21ac4bdb7838c8c1b8e7d60f632eda79b (patch)
treeed8058727222cb82d2feb017e14e5a062369b81a /adb
parent67672e04111a6cfdf572023a154675749c3fb550 (diff)
parentd02e521d79a49471b3f1dc3717e842948df64789 (diff)
downloadsystem_core-a8b8c0e21ac4bdb7838c8c1b8e7d60f632eda79b.zip
system_core-a8b8c0e21ac4bdb7838c8c1b8e7d60f632eda79b.tar.gz
system_core-a8b8c0e21ac4bdb7838c8c1b8e7d60f632eda79b.tar.bz2
am d02e521d: adb: Add support for Philips\'s USB vendor ID
Merge commit 'd02e521d79a49471b3f1dc3717e842948df64789' into gingerbread-plus-aosp * commit 'd02e521d79a49471b3f1dc3717e842948df64789': adb: Add support for Philips's USB vendor ID
Diffstat (limited 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 deb2ec8..accca5b 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -83,6 +83,8 @@
#define VENDOR_ID_KT_TECH 0x2116
// Asus's USB Vendor ID
#define VENDOR_ID_ASUS 0x0b05
+// Philips's USB Vendor ID
+#define VENDOR_ID_PHILIPS 0x0471
/** built-in vendor list */
@@ -111,6 +113,7 @@ int builtInVendorIds[] = {
VENDOR_ID_SK_TELESYS,
VENDOR_ID_KT_TECH,
VENDOR_ID_ASUS,
+ VENDOR_ID_PHILIPS,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))