diff options
| author | Takeshi Kishimoto <kishimoto@google.com> | 2010-06-18 09:37:35 +0800 |
|---|---|---|
| committer | Takeshi Kishimoto <kishimoto@google.com> | 2010-06-18 09:37:35 +0800 |
| commit | 2124afeee1f19423e71c52ede6f4926f5389e917 (patch) | |
| tree | 163cc8412a8dcce0bc8b26a80a76526b2f2b6916 | |
| parent | 8b0ec20d6f9636def6740085b203302c1680fa81 (diff) | |
| download | system_core-2124afeee1f19423e71c52ede6f4926f5389e917.tar.gz system_core-2124afeee1f19423e71c52ede6f4926f5389e917.tar.bz2 system_core-2124afeee1f19423e71c52ede6f4926f5389e917.zip | |
Added NEC and PMC's USB VIDs upon their request.
Change-Id: I332ee1e68ff960d41a365aeb96d012253056edd2
| -rw-r--r-- | adb/usb_vendors.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/adb/usb_vendors.c b/adb/usb_vendors.c index 6d85fb15..9e1600fb 100644 --- a/adb/usb_vendors.c +++ b/adb/usb_vendors.c @@ -69,6 +69,10 @@ #define VENDOR_ID_PANTECH 0x10A9 // Qualcomm's USB Vendor ID #define VENDOR_ID_QUALCOMM 0x05c6 +// NEC's USB Vendor ID +#define VENDOR_ID_NEC 0x0409 +// Panasonic Mobile Communication's USB Vendor ID +#define VENDOR_ID_PMC 0x04DA /** built-in vendor list */ @@ -90,6 +94,8 @@ int builtInVendorIds[] = { VENDOR_ID_KYOCERA, VENDOR_ID_PANTECH, VENDOR_ID_QUALCOMM, + VENDOR_ID_NEC, + VENDOR_ID_PMC, }; #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |
