system/corennnnn
Revision | 746f3243f6d30ab51a36dcfea76eac3ba29ac625 (tree) |
---|---|
Time | 2012-01-25 04:18:50 |
Author | Xavier Ducrohet <xav@andr...> |
Commiter | Xavier Ducrohet |
Add USB vendor IDs for Quanta, INQ and Sony.
Change-Id: I224e067d9a64e8e9e7afbad0760a4b07f965bf83
@@ -117,6 +117,12 @@ | ||
117 | 117 | #define VENDOR_ID_LUMIGON 0x25E3 |
118 | 118 | //Intel's USB Vendor ID |
119 | 119 | #define VENDOR_ID_INTEL 0x8087 |
120 | +// Quanta's USB Vendor ID | |
121 | +#define VENDOR_ID_QUANTA 0x0408 | |
122 | +// INQ Mobile's USB Vendor ID | |
123 | +#define VENDOR_ID_INQ_MOBILE 0x2314 | |
124 | +// Sony's USB Vendor ID | |
125 | +#define VENDOR_ID_SONY 0x054C | |
120 | 126 | |
121 | 127 | /** built-in vendor list */ |
122 | 128 | int builtInVendorIds[] = { |
@@ -161,6 +167,9 @@ int builtInVendorIds[] = { | ||
161 | 167 | VENDOR_ID_FUJITSU, |
162 | 168 | VENDOR_ID_LUMIGON, |
163 | 169 | VENDOR_ID_INTEL, |
170 | + VENDOR_ID_QUANTA, | |
171 | + VENDOR_ID_INQ_MOBILE, | |
172 | + VENDOR_ID_SONY, | |
164 | 173 | }; |
165 | 174 | |
166 | 175 | #define BUILT_IN_VENDOR_COUNT (sizeof(builtInVendorIds)/sizeof(builtInVendorIds[0])) |
@@ -157,6 +157,7 @@ int match_fastboot(usb_ifc_info *info) | ||
157 | 157 | (info->dev_vendor != 0x22b8) && // Motorola |
158 | 158 | (info->dev_vendor != 0x0955) && // Nvidia |
159 | 159 | (info->dev_vendor != 0x413c) && // DELL |
160 | + (info->dev_vendor != 0x2314) && // INQ Mobile | |
160 | 161 | (info->dev_vendor != 0x0bb4)) // HTC |
161 | 162 | return -1; |
162 | 163 | if(info->ifc_class != 0xff) return -1; |