diff options
author | Xavier Ducrohet <xav@android.com> | 2011-05-18 17:41:21 -0700 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2011-05-18 17:41:21 -0700 |
commit | 44c336bfe9bbd400461b9b28a449a67145eaeeb8 (patch) | |
tree | a2bd2e721f6858c0d60247979e9669610fab838a /adb | |
parent | 61e33b338cbb90c34cb3e07fe55edcc08c6ce3b8 (diff) | |
parent | 830fc9afbe3e83b3b39278d67a9680bb2068098a (diff) | |
download | system_core-44c336bfe9bbd400461b9b28a449a67145eaeeb8.zip system_core-44c336bfe9bbd400461b9b28a449a67145eaeeb8.tar.gz system_core-44c336bfe9bbd400461b9b28a449a67145eaeeb8.tar.bz2 |
am 830fc9af: am 30d916c3: Add Funai\'s USB vendor ID to adb.
* commit '830fc9afbe3e83b3b39278d67a9680bb2068098a':
Add Funai's USB vendor ID to adb.
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 d642566..c09fc71 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -87,6 +87,8 @@ #define VENDOR_ID_PHILIPS 0x0471 // Texas Instruments's USB Vendor ID #define VENDOR_ID_TI 0x0451 +// Funai's USB Vendor ID +#define VENDOR_ID_FUNAI 0x0F1C /** built-in vendor list */ @@ -117,6 +119,7 @@ int builtInVendorIds[] = { VENDOR_ID_ASUS, VENDOR_ID_PHILIPS, VENDOR_ID_TI, + VENDOR_ID_FUNAI, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |