diff options
author | Xavier Ducrohet <xav@android.com> | 2011-05-18 16:57:26 -0700 |
---|---|---|
committer | Xavier Ducrohet <xav@android.com> | 2011-05-18 16:57:26 -0700 |
commit | 30d916c360d4d49658b9b305b17568b37fcb1029 (patch) | |
tree | 9140c64f029f82bb2c54ecb9509b50d33419c621 /adb | |
parent | 91a9b452152f3c147f5356f0d2f503a664bd2a46 (diff) | |
download | system_core-30d916c360d4d49658b9b305b17568b37fcb1029.zip system_core-30d916c360d4d49658b9b305b17568b37fcb1029.tar.gz system_core-30d916c360d4d49658b9b305b17568b37fcb1029.tar.bz2 |
Add Funai's USB vendor ID to adb.
Change-Id: Idc2974d4437ab1c79cfea5aade98b599a877aad3
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])) |