diff options
author | Mike Lockwood <lockwood@google.com> | 2010-10-15 18:14:22 -0400 |
---|---|---|
committer | Mike Lockwood <lockwood@google.com> | 2010-10-15 18:14:22 -0400 |
commit | d02e521d79a49471b3f1dc3717e842948df64789 (patch) | |
tree | c4ec25b8f4801d6f16afa2b69905669b0d9fee13 /adb | |
parent | a775965b6c58b67f3d26a854a835db27c3244e0d (diff) | |
download | system_core-d02e521d79a49471b3f1dc3717e842948df64789.zip system_core-d02e521d79a49471b3f1dc3717e842948df64789.tar.gz system_core-d02e521d79a49471b3f1dc3717e842948df64789.tar.bz2 |
adb: Add support for Philips's USB vendor ID
Change-Id: Iaf2e3f6f111198740703b5c3581d95756f797224
Signed-off-by: Mike Lockwood <lockwood@google.com>
Diffstat (limited to 'adb')
-rw-r--r-- | adb/usb_vendors.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 5bed00c..cbc2464 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -81,6 +81,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 */ @@ -108,6 +110,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])) |