summaryrefslogtreecommitdiffstats
path: root/adb
diff options
context:
space:
mode:
authorMike Lockwood <lockwood@android.com>2009-09-21 08:09:59 -0400
committerMike Lockwood <lockwood@android.com>2009-10-13 10:45:29 -0400
commit89f9a84af07292e71b209aaab91001132e137b63 (patch)
tree245a94526a28650ec43650b585bd8f93562ae984 /adb
parent4a0da39db4b6a6062cfd1152ec3c9a266b907808 (diff)
downloadsystem_core-89f9a84af07292e71b209aaab91001132e137b63.zip
system_core-89f9a84af07292e71b209aaab91001132e137b63.tar.gz
system_core-89f9a84af07292e71b209aaab91001132e137b63.tar.bz2
adb: Add USB Vendor IDs for LG and Huawei
Change-Id: Ib47e3e39609bac9cf34f2b9334aa95184b3db71d Signed-off-by: Mike Lockwood <lockwood@android.com>
Diffstat (limited to 'adb')
-rw-r--r--adb/usb_vendors.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c
index f8c54d7..394edc3 100644
--- a/adb/usb_vendors.c
+++ b/adb/usb_vendors.c
@@ -43,6 +43,10 @@
#define VENDOR_ID_SAMSUNG 0x04e8
// Motorola's USB Vendor ID
#define VENDOR_ID_MOTOROLA 0x22b8
+// LG's USB Vendor ID
+#define VENDOR_ID_LGE 0x1004
+// Huawei's USB Vendor ID
+#define VENDOR_ID_HUAWEI 0x12D1
/** built-in vendor list */
int builtInVendorIds[] = {
@@ -50,6 +54,8 @@ int builtInVendorIds[] = {
VENDOR_ID_HTC,
VENDOR_ID_SAMSUNG,
VENDOR_ID_MOTOROLA,
+ VENDOR_ID_LGE,
+ VENDOR_ID_HUAWEI,
};
#define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0]))