1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
|
/* ??? */
/*
* THIS FILE IS AUTOMATICALLY GENERATED. DO NOT EDIT.
*
* generated from:
* FreeBSD: head/sys/dev/usb/usbdevs 187163 2009-01-13 19:01:25Z thompsa
*/
/* $NetBSD: usbdevs,v 1.392 2004/12/29 08:38:44 imp Exp $ */
/*-
* Copyright (c) 1998-2004 The NetBSD Foundation, Inc.
* All rights reserved.
*
* This code is derived from software contributed to The NetBSD Foundation
* by Lennart Augustsson (lennart@augustsson.net) at
* Carlstedt Research & Technology.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the NetBSD
* Foundation, Inc. and its contributors.
* 4. Neither the name of The NetBSD Foundation nor the names of its
* contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
* BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*/
/*
* List of known USB vendors
*
* USB.org publishes a VID list of USB-IF member companies at
* http://www.usb.org/developers/tools
* Note that it does not show companies that have obtained a Vendor ID
* without becoming full members.
*
* Please note that these IDs do not do anything. Adding an ID here and
* regenerating the usbdevs.h and usbdevs_data.h only makes a symbolic name
* available to the source code and does not change any functionality, nor
* does it make your device available to a specific driver.
* It will however make the descriptive string available if a device does not
* provide the string itself.
*
* After adding a vendor ID VNDR and a product ID PRDCT you will have the
* following extra defines:
* #define USB_VENDOR_VNDR 0x????
* #define USB_PRODUCT_VNDR_PRDCT 0x????
*
* You may have to add these defines to the respective probe routines to
* make the device recognised by the appropriate device driver.
*/
#define USB_VENDOR_UNKNOWN1 0x0053 /* Unknown vendor */
#define USB_VENDOR_UNKNOWN2 0x0105 /* Unknown vendor */
#define USB_VENDOR_EGALAX2 0x0123 /* eGalax, Inc. */
#define USB_VENDOR_HUMAX 0x02ad /* HUMAX */
#define USB_VENDOR_LTS 0x0386 /* LTS */
#define USB_VENDOR_BWCT 0x03da /* Bernd Walter Computer Technology */
#define USB_VENDOR_AOX 0x03e8 /* AOX */
#define USB_VENDOR_THESYS 0x03e9 /* Thesys */
#define USB_VENDOR_DATABROADCAST 0x03ea /* Data Broadcasting */
#define USB_VENDOR_ATMEL 0x03eb /* Atmel */
#define USB_VENDOR_IWATSU 0x03ec /* Iwatsu America */
#define USB_VENDOR_MITSUMI 0x03ee /* Mitsumi */
#define USB_VENDOR_HP 0x03f0 /* Hewlett Packard */
#define USB_VENDOR_GENOA 0x03f1 /* Genoa */
#define USB_VENDOR_OAK 0x03f2 /* Oak */
#define USB_VENDOR_ADAPTEC 0x03f3 /* Adaptec */
#define USB_VENDOR_DIEBOLD 0x03f4 /* Diebold */
#define USB_VENDOR_SIEMENSELECTRO 0x03f5 /* Siemens Electromechanical */
#define USB_VENDOR_EPSONIMAGING 0x03f8 /* Epson Imaging */
#define USB_VENDOR_KEYTRONIC 0x03f9 /* KeyTronic */
#define USB_VENDOR_OPTI 0x03fb /* OPTi */
#define USB_VENDOR_ELITEGROUP 0x03fc /* Elitegroup */
#define USB_VENDOR_XILINX 0x03fd /* Xilinx */
#define USB_VENDOR_FARALLON 0x03fe /* Farallon Communications */
#define USB_VENDOR_NATIONAL 0x0400 /* National Semiconductor */
#define USB_VENDOR_NATIONALREG 0x0401 /* National Registry */
#define USB_VENDOR_ACERLABS 0x0402 /* Acer Labs */
#define USB_VENDOR_FTDI 0x0403 /* Future Technology Devices */
#define USB_VENDOR_NCR 0x0404 /* NCR */
#define USB_VENDOR_SYNOPSYS2 0x0405 /* Synopsys */
#define USB_VENDOR_FUJITSUICL 0x0406 /* Fujitsu-ICL */
#define USB_VENDOR_FUJITSU2 0x0407 /* Fujitsu Personal Systems */
#define USB_VENDOR_QUANTA 0x0408 /* Quanta */
#define USB_VENDOR_NEC 0x0409 /* NEC */
#define USB_VENDOR_KODAK 0x040a /* Eastman Kodak */
#define USB_VENDOR_WELTREND 0x040b /* Weltrend */
#define USB_VENDOR_VIA 0x040d /* VIA */
#define USB_VENDOR_MCCI 0x040e /* MCCI */
#define USB_VENDOR_MELCO 0x0411 /* Melco */
#define USB_VENDOR_LEADTEK 0x0413 /* Leadtek */
#define USB_VENDOR_WINBOND 0x0416 /* Winbond */
#define USB_VENDOR_PHOENIX 0x041a /* Phoenix */
#define USB_VENDOR_CREATIVE 0x041e /* Creative Labs */
#define USB_VENDOR_NOKIA 0x0421 /* Nokia */
#define USB_VENDOR_ADI 0x0422 /* ADI Systems */
#define USB_VENDOR_CATC 0x0423 /* Computer Access Technology */
#define USB_VENDOR_SMC2 0x0424 /* Standard Microsystems */
#define USB_VENDOR_MOTOROLA_HK 0x0425 /* Motorola HK */
#define USB_VENDOR_GRAVIS 0x0428 /* Advanced Gravis Computer */
#define USB_VENDOR_CIRRUSLOGIC 0x0429 /* Cirrus Logic */
#define USB_VENDOR_INNOVATIVE 0x042c /* Innovative Semiconductors */
#define USB_VENDOR_MOLEX 0x042f /* Molex */
#define USB_VENDOR_SUN 0x0430 /* Sun Microsystems */
#define USB_VENDOR_UNISYS 0x0432 /* Unisys */
#define USB_VENDOR_TAUGA 0x0436 /* Taugagreining HF */
#define USB_VENDOR_AMD 0x0438 /* Advanced Micro Devices */
#define USB_VENDOR_LEXMARK 0x043d /* Lexmark International */
#define USB_VENDOR_LG 0x043e /* LG Electronics */
#define USB_VENDOR_NANAO 0x0440 /* NANAO */
#define USB_VENDOR_GATEWAY 0x0443 /* Gateway 2000 */
#define USB_VENDOR_NMB 0x0446 /* NMB */
#define USB_VENDOR_ALPS 0x044e /* Alps Electric */
#define USB_VENDOR_THRUST 0x044f /* Thrustmaster */
#define USB_VENDOR_TI 0x0451 /* Texas Instruments */
#define USB_VENDOR_ANALOGDEVICES 0x0456 /* Analog Devices */
#define USB_VENDOR_SIS 0x0457 /* Silicon Integrated Systems Corp. */
#define USB_VENDOR_KYE 0x0458 /* KYE Systems */
#define USB_VENDOR_DIAMOND2 0x045a /* Diamond (Supra) */
#define USB_VENDOR_RENESAS 0x045b /* Renesas */
#define USB_VENDOR_MICROSOFT 0x045e /* Microsoft */
#define USB_VENDOR_PRIMAX 0x0461 /* Primax Electronics */
#define USB_VENDOR_MGE 0x0463 /* MGE UPS Systems */
#define USB_VENDOR_AMP 0x0464 /* AMP */
#define USB_VENDOR_CHERRY 0x046a /* Cherry Mikroschalter */
#define USB_VENDOR_MEGATRENDS 0x046b /* American Megatrends */
#define USB_VENDOR_LOGITECH 0x046d /* Logitech */
#define USB_VENDOR_BTC 0x046e /* Behavior Tech. Computer */
#define USB_VENDOR_PHILIPS 0x0471 /* Philips */
#define USB_VENDOR_SUN2 0x0472 /* Sun Microsystems (offical) */
#define USB_VENDOR_SANYO 0x0474 /* Sanyo Electric */
#define USB_VENDOR_SEAGATE 0x0477 /* Seagate */
#define USB_VENDOR_CONNECTIX 0x0478 /* Connectix */
#define USB_VENDOR_SEMTECH 0x047a /* Semtech */
#define USB_VENDOR_KENSINGTON 0x047d /* Kensington */
#define USB_VENDOR_LUCENT 0x047e /* Lucent */
#define USB_VENDOR_PLANTRONICS 0x047f /* Plantronics */
#define USB_VENDOR_KYOCERA 0x0482 /* Kyocera Wireless Corp. */
#define USB_VENDOR_STMICRO 0x0483 /* STMicroelectronics */
#define USB_VENDOR_FOXCONN 0x0489 /* Foxconn */
#define USB_VENDOR_MEIZU 0x0492 /* Meizu Electronics */
#define USB_VENDOR_YAMAHA 0x0499 /* YAMAHA */
#define USB_VENDOR_COMPAQ 0x049f /* Compaq */
#define USB_VENDOR_HITACHI 0x04a4 /* Hitachi */
#define USB_VENDOR_ACERP 0x04a5 /* Acer Peripherals */
#define USB_VENDOR_DAVICOM 0x04a6 /* Davicom */
#define USB_VENDOR_VISIONEER 0x04a7 /* Visioneer */
#define USB_VENDOR_CANON 0x04a9 /* Canon */
#define USB_VENDOR_NIKON 0x04b0 /* Nikon */
#define USB_VENDOR_PAN 0x04b1 /* Pan International */
#define USB_VENDOR_IBM 0x04b3 /* IBM */
#define USB_VENDOR_CYPRESS 0x04b4 /* Cypress Semiconductor */
#define USB_VENDOR_ROHM 0x04b5 /* ROHM */
#define USB_VENDOR_COMPAL 0x04b7 /* Compal */
#define USB_VENDOR_EPSON 0x04b8 /* Seiko Epson */
#define USB_VENDOR_RAINBOW 0x04b9 /* Rainbow Technologies */
#define USB_VENDOR_IODATA 0x04bb /* I-O Data */
#define USB_VENDOR_TDK 0x04bf /* TDK */
#define USB_VENDOR_3COMUSR 0x04c1 /* U.S. Robotics */
#define USB_VENDOR_METHODE 0x04c2 /* Methode Electronics Far East */
#define USB_VENDOR_MAXISWITCH 0x04c3 /* Maxi Switch */
#define USB_VENDOR_LOCKHEEDMER 0x04c4 /* Lockheed Martin Energy Research */
#define USB_VENDOR_FUJITSU 0x04c5 /* Fujitsu */
#define USB_VENDOR_TOSHIBAAM 0x04c6 /* Toshiba America */
#define USB_VENDOR_MICROMACRO 0x04c7 /* Micro Macro Technologies */
#define USB_VENDOR_KONICA 0x04c8 /* Konica */
#define USB_VENDOR_LITEON 0x04ca /* Lite-On Technology */
#define USB_VENDOR_FUJIPHOTO 0x04cb /* Fuji Photo Film */
#define USB_VENDOR_PHILIPSSEMI 0x04cc /* Philips Semiconductors */
#define USB_VENDOR_TATUNG 0x04cd /* Tatung Co. Of America */
#define USB_VENDOR_SCANLOGIC 0x04ce /* ScanLogic */
#define USB_VENDOR_MYSON 0x04cf /* Myson Technology */
#define USB_VENDOR_DIGI2 0x04d0 /* Digi */
#define USB_VENDOR_ITTCANON 0x04d1 /* ITT Canon */
#define USB_VENDOR_ALTEC 0x04d2 /* Altec Lansing */
#define USB_VENDOR_LSI 0x04d4 /* LSI */
#define USB_VENDOR_MENTORGRAPHICS 0x04d6 /* Mentor Graphics */
#define USB_VENDOR_ITUNERNET 0x04d8 /* I-Tuner Networks */
#define USB_VENDOR_HOLTEK 0x04d9 /* Holtek Semiconductor, Inc. */
#define USB_VENDOR_PANASONIC 0x04da /* Panasonic (Matsushita) */
#define USB_VENDOR_HUANHSIN 0x04dc /* Huan Hsin */
#define USB_VENDOR_SHARP 0x04dd /* Sharp */
#define USB_VENDOR_IIYAMA 0x04e1 /* Iiyama */
#define USB_VENDOR_SHUTTLE 0x04e6 /* Shuttle Technology */
#define USB_VENDOR_ELO 0x04e7 /* Elo TouchSystems */
#define USB_VENDOR_SAMSUNG 0x04e8 /* Samsung Electronics */
#define USB_VENDOR_NORTHSTAR 0x04eb /* Northstar */
#define USB_VENDOR_TOKYOELECTRON 0x04ec /* Tokyo Electron */
#define USB_VENDOR_ANNABOOKS 0x04ed /* Annabooks */
#define USB_VENDOR_JVC 0x04f1 /* JVC */
#define USB_VENDOR_CHICONY 0x04f2 /* Chicony Electronics */
#define USB_VENDOR_ELAN 0x04f3 /* Elan */
#define USB_VENDOR_NEWNEX 0x04f7 /* Newnex */
#define USB_VENDOR_BROTHER 0x04f9 /* Brother Industries */
#define USB_VENDOR_DALLAS 0x04fa /* Dallas Semiconductor */
#define USB_VENDOR_AIPTEK2 0x04fc /* AIPTEK International */
#define USB_VENDOR_PFU 0x04fe /* PFU */
#define USB_VENDOR_FUJIKURA 0x0501 /* Fujikura/DDK */
#define USB_VENDOR_ACER 0x0502 /* Acer */
#define USB_VENDOR_3COM 0x0506 /* 3Com */
#define USB_VENDOR_HOSIDEN 0x0507 /* Hosiden Corporation */
#define USB_VENDOR_AZTECH 0x0509 /* Aztech Systems */
#define USB_VENDOR_BELKIN 0x050d /* Belkin Components */
#define USB_VENDOR_KAWATSU 0x050f /* Kawatsu Semiconductor */
#define USB_VENDOR_FCI 0x0514 /* FCI */
#define USB_VENDOR_LONGWELL 0x0516 /* Longwell */
#define USB_VENDOR_COMPOSITE 0x0518 /* Composite */
#define USB_VENDOR_STAR 0x0519 /* Star Micronics */
#define USB_VENDOR_APC 0x051d /* American Power Conversion */
#define USB_VENDOR_SCIATLANTA 0x051e /* Scientific Atlanta */
#define USB_VENDOR_TSM 0x0520 /* TSM */
#define USB_VENDOR_CONNECTEK 0x0522 /* Advanced Connectek USA */
#define USB_VENDOR_NETCHIP 0x0525 /* NetChip Technology */
#define USB_VENDOR_ALTRA 0x0527 /* ALTRA */
#define USB_VENDOR_ATI 0x0528 /* ATI Technologies */
#define USB_VENDOR_AKS 0x0529 /* Aladdin Knowledge Systems */
#define USB_VENDOR_TEKOM 0x052b /* Tekom */
#define USB_VENDOR_CANONDEV 0x052c /* Canon */
#define USB_VENDOR_WACOMTECH 0x0531 /* Wacom */
#define USB_VENDOR_INVENTEC 0x0537 /* Inventec */
#define USB_VENDOR_SHYHSHIUN 0x0539 /* Shyh Shiun Terminals */
#define USB_VENDOR_PREHWERKE 0x053a /* Preh Werke Gmbh & Co. KG */
#define USB_VENDOR_SYNOPSYS 0x053f /* Synopsys */
#define USB_VENDOR_UNIACCESS 0x0540 /* Universal Access */
#define USB_VENDOR_VIEWSONIC 0x0543 /* ViewSonic */
#define USB_VENDOR_XIRLINK 0x0545 /* Xirlink */
#define USB_VENDOR_ANCHOR 0x0547 /* Anchor Chips */
#define USB_VENDOR_SONY 0x054c /* Sony */
#define USB_VENDOR_FUJIXEROX 0x0550 /* Fuji Xerox */
#define USB_VENDOR_VISION 0x0553 /* VLSI Vision */
#define USB_VENDOR_ASAHIKASEI 0x0556 /* Asahi Kasei Microsystems */
#define USB_VENDOR_ATEN 0x0557 /* ATEN International */
#define USB_VENDOR_SAMSUNG2 0x055d /* Samsung Electronics */
#define USB_VENDOR_MUSTEK 0x055f /* Mustek Systems */
#define USB_VENDOR_TELEX 0x0562 /* Telex Communications */
#define USB_VENDOR_CHINON 0x0564 /* Chinon */
#define USB_VENDOR_PERACOM 0x0565 /* Peracom Networks */
#define USB_VENDOR_ALCOR2 0x0566 /* Alcor Micro */
#define USB_VENDOR_XYRATEX 0x0567 /* Xyratex */
#define USB_VENDOR_WACOM 0x056a /* WACOM */
#define USB_VENDOR_ETEK 0x056c /* e-TEK Labs */
#define USB_VENDOR_EIZO 0x056d /* EIZO */
#define USB_VENDOR_ELECOM 0x056e /* Elecom */
#define USB_VENDOR_CONEXANT 0x0572 /* Conexant */
#define USB_VENDOR_HAUPPAUGE 0x0573 /* Hauppauge Computer Works */
#define USB_VENDOR_BAFO 0x0576 /* BAFO/Quality Computer Accessories */
#define USB_VENDOR_YEDATA 0x057b /* Y-E Data */
#define USB_VENDOR_AVM 0x057c /* AVM */
#define USB_VENDOR_QUICKSHOT 0x057f /* Quickshot */
#define USB_VENDOR_ROLAND 0x0582 /* Roland */
#define USB_VENDOR_ROCKFIRE 0x0583 /* Rockfire */
#define USB_VENDOR_RATOC 0x0584 /* RATOC Systems */
#define USB_VENDOR_ZYXEL 0x0586 /* ZyXEL Communication */
#define USB_VENDOR_INFINEON 0x058b /* Infineon */
#define USB_VENDOR_MICREL 0x058d /* Micrel */
#define USB_VENDOR_ALCOR 0x058f /* Alcor Micro */
#define USB_VENDOR_OMRON 0x0590 /* OMRON */
#define USB_VENDOR_ZORAN 0x0595 /* Zoran Microelectronics */
#define USB_VENDOR_NIIGATA 0x0598 /* Niigata */
#define USB_VENDOR_IOMEGA 0x059b /* Iomega */
#define USB_VENDOR_ATREND 0x059c /* A-Trend Technology */
#define USB_VENDOR_AID 0x059d /* Advanced Input Devices */
#define USB_VENDOR_LACIE 0x059f /* LaCie */
#define USB_VENDOR_FUJIFILM 0x05a2 /* Fuji Film */
#define USB_VENDOR_ARC 0x05a3 /* ARC */
#define USB_VENDOR_ORTEK 0x05a4 /* Ortek */
#define USB_VENDOR_BOSE 0x05a7 /* Bose */
#define USB_VENDOR_OMNIVISION 0x05a9 /* OmniVision */
#define USB_VENDOR_INSYSTEM 0x05ab /* In-System Design */
#define USB_VENDOR_APPLE 0x05ac /* Apple Computer */
#define USB_VENDOR_YCCABLE 0x05ad /* Y.C. Cable */
#define USB_VENDOR_DIGITALPERSONA 0x05ba /* DigitalPersona */
#define USB_VENDOR_3G 0x05bc /* 3G Green Green Globe */
#define USB_VENDOR_RAFI 0x05bd /* RAFI */
#define USB_VENDOR_TYCO 0x05be /* Tyco */
#define USB_VENDOR_KAWASAKI 0x05c1 /* Kawasaki */
#define USB_VENDOR_DIGI 0x05c5 /* Digi International */
#define USB_VENDOR_QUALCOMM2 0x05c6 /* Qualcomm */
#define USB_VENDOR_QTRONIX 0x05c7 /* Qtronix */
#define USB_VENDOR_FOXLINK 0x05c8 /* Foxlink */
#define USB_VENDOR_RICOH 0x05ca /* Ricoh */
#define USB_VENDOR_ELSA 0x05cc /* ELSA */
#define USB_VENDOR_SCIWORX 0x05ce /* sci-worx */
#define USB_VENDOR_BRAINBOXES 0x05d1 /* Brainboxes Limited */
#define USB_VENDOR_ULTIMA 0x05d8 /* Ultima */
#define USB_VENDOR_AXIOHM 0x05d9 /* Axiohm Transaction Solutions */
#define USB_VENDOR_MICROTEK 0x05da /* Microtek */
#define USB_VENDOR_SUNTAC 0x05db /* SUN Corporation */
#define USB_VENDOR_LEXAR 0x05dc /* Lexar Media */
#define USB_VENDOR_ADDTRON 0x05dd /* Addtron */
#define USB_VENDOR_SYMBOL 0x05e0 /* Symbol Technologies */
#define USB_VENDOR_SYNTEK 0x05e1 /* Syntek */
#define USB_VENDOR_GENESYS 0x05e3 /* Genesys Logic */
#define USB_VENDOR_FUJI 0x05e5 /* Fuji Electric */
#define USB_VENDOR_KEITHLEY 0x05e6 /* Keithley Instruments */
#define USB_VENDOR_EIZONANAO 0x05e7 /* EIZO Nanao */
#define USB_VENDOR_KLSI 0x05e9 /* Kawasaki LSI */
#define USB_VENDOR_FFC 0x05eb /* FFC */
#define USB_VENDOR_ANKO 0x05ef /* Anko Electronic */
#define USB_VENDOR_PIENGINEERING 0x05f3 /* P.I. Engineering */
#define USB_VENDOR_AOC 0x05f6 /* AOC International */
#define USB_VENDOR_CHIC 0x05fe /* Chic Technology */
#define USB_VENDOR_BARCO 0x0600 /* Barco Display Systems */
#define USB_VENDOR_BRIDGE 0x0607 /* Bridge Information */
#define USB_VENDOR_SOLIDYEAR 0x060b /* Solid Year */
#define USB_VENDOR_BIORAD 0x0614 /* Bio-Rad Laboratories */
#define USB_VENDOR_MACALLY 0x0618 /* Macally */
#define USB_VENDOR_ACTLABS 0x061c /* Act Labs */
#define USB_VENDOR_ALARIS 0x0620 /* Alaris */
#define USB_VENDOR_APEX 0x0624 /* Apex */
#define USB_VENDOR_CREATIVE3 0x062a /* Creative Labs */
#define USB_VENDOR_VIVITAR 0x0636 /* Vivitar */
#define USB_VENDOR_GUNZE 0x0637 /* Gunze Electronics USA */
#define USB_VENDOR_AVISION 0x0638 /* Avision */
#define USB_VENDOR_TEAC 0x0644 /* TEAC */
#define USB_VENDOR_SGI 0x065e /* Silicon Graphics */
#define USB_VENDOR_SANWASUPPLY 0x0663 /* Sanwa Supply */
#define USB_VENDOR_LINKSYS 0x066b /* Linksys */
#define USB_VENDOR_ACERSA 0x066e /* Acer Semiconductor America */
#define USB_VENDOR_SIGMATEL 0x066f /* Sigmatel */
#define USB_VENDOR_DRAYTEK 0x0675 /* DrayTek */
#define USB_VENDOR_AIWA 0x0677 /* Aiwa */
#define USB_VENDOR_ACARD 0x0678 /* ACARD Technology */
#define USB_VENDOR_PROLIFIC 0x067b /* Prolific Technology */
#define USB_VENDOR_SIEMENS 0x067c /* Siemens */
#define USB_VENDOR_AVANCELOGIC 0x0680 /* Avance Logic */
#define USB_VENDOR_SIEMENS2 0x0681 /* Siemens */
#define USB_VENDOR_MINOLTA 0x0686 /* Minolta */
#define USB_VENDOR_CHPRODUCTS 0x068e /* CH Products */
#define USB_VENDOR_HAGIWARA 0x0693 /* Hagiwara Sys-Com */
#define USB_VENDOR_CTX 0x0698 /* Chuntex */
#define USB_VENDOR_ASKEY 0x069a /* Askey Computer */
#define USB_VENDOR_SAITEK 0x06a3 /* Saitek */
#define USB_VENDOR_ALCATELT 0x06b9 /* Alcatel Telecom */
#define USB_VENDOR_AGFA 0x06bd /* AGFA-Gevaert */
#define USB_VENDOR_ASIAMD 0x06be /* Asia Microelectronic Development */
#define USB_VENDOR_BIZLINK 0x06c4 /* Bizlink International */
#define USB_VENDOR_KEYSPAN 0x06cd /* Keyspan / InnoSys Inc. */
#define USB_VENDOR_AASHIMA 0x06d6 /* Aashima Technology */
#define USB_VENDOR_MULTITECH 0x06e0 /* MultiTech */
#define USB_VENDOR_ADS 0x06e1 /* ADS Technologies */
#define USB_VENDOR_ALCATELM 0x06e4 /* Alcatel Microelectronics */
#define USB_VENDOR_SIRIUS 0x06ea /* Sirius Technologies */
#define USB_VENDOR_GUILLEMOT 0x06f8 /* Guillemot */
#define USB_VENDOR_BOSTON 0x06fd /* Boston Acoustics */
#define USB_VENDOR_SMC 0x0707 /* Standard Microsystems */
#define USB_VENDOR_PUTERCOM 0x0708 /* Putercom */
#define USB_VENDOR_MCT 0x0711 /* MCT */
#define USB_VENDOR_IMATION 0x0718 /* Imation */
#define USB_VENDOR_SONYERICSSON 0x0731 /* Sony Ericsson */
#define USB_VENDOR_EICON 0x0734 /* Eicon Networks */
#define USB_VENDOR_SYNTECH 0x0745 /* Syntech Information */
#define USB_VENDOR_DIGITALSTREAM 0x074e /* Digital Stream */
#define USB_VENDOR_AUREAL 0x0755 /* Aureal Semiconductor */
#define USB_VENDOR_MIDIMAN 0x0763 /* Midiman */
#define USB_VENDOR_CYBERPOWER 0x0764 /* Cyber Power Systems, Inc. */
#define USB_VENDOR_SURECOM 0x0769 /* Surecom Technology */
#define USB_VENDOR_LINKSYS2 0x077b /* Linksys */
#define USB_VENDOR_GRIFFIN 0x077d /* Griffin Technology */
#define USB_VENDOR_SANDISK 0x0781 /* SanDisk */
#define USB_VENDOR_JENOPTIK 0x0784 /* Jenoptik */
#define USB_VENDOR_LOGITEC 0x0789 /* Logitec */
#define USB_VENDOR_BRIMAX 0x078e /* Brimax */
#define USB_VENDOR_AXIS 0x0792 /* Axis Communications */
#define USB_VENDOR_ABL 0x0794 /* ABL Electronics */
#define USB_VENDOR_SAGEM 0x079b /* Sagem */
#define USB_VENDOR_SUNCOMM 0x079c /* Sun Communications, Inc. */
#define USB_VENDOR_ALFADATA 0x079d /* Alfadata Computer */
#define USB_VENDOR_NATIONALTECH 0x07a2 /* National Technical Systems */
#define USB_VENDOR_ONNTO 0x07a3 /* Onnto */
#define USB_VENDOR_BE 0x07a4 /* Be */
#define USB_VENDOR_ADMTEK 0x07a6 /* ADMtek */
#define USB_VENDOR_COREGA 0x07aa /* Corega */
#define USB_VENDOR_FREECOM 0x07ab /* Freecom */
#define USB_VENDOR_MICROTECH 0x07af /* Microtech */
#define USB_VENDOR_GENERALINSTMNTS 0x07b2 /* General Instruments (Motorola) */
#define USB_VENDOR_OLYMPUS 0x07b4 /* Olympus */
#define USB_VENDOR_ABOCOM 0x07b8 /* AboCom Systems */
#define USB_VENDOR_KEISOKUGIKEN 0x07c1 /* Keisokugiken */
#define USB_VENDOR_ONSPEC 0x07c4 /* OnSpec */
#define USB_VENDOR_APG 0x07c5 /* APG Cash Drawer */
#define USB_VENDOR_BUG 0x07c8 /* B.U.G. */
#define USB_VENDOR_ALLIEDTELESYN 0x07c9 /* Allied Telesyn International */
#define USB_VENDOR_AVERMEDIA 0x07ca /* AVerMedia Technologies */
#define USB_VENDOR_SIIG 0x07cc /* SIIG */
#define USB_VENDOR_CASIO 0x07cf /* CASIO */
#define USB_VENDOR_DLINK2 0x07d1 /* D-Link */
#define USB_VENDOR_APTIO 0x07d2 /* Aptio Products */
#define USB_VENDOR_ARASAN 0x07da /* Arasan Chip Systems */
#define USB_VENDOR_ALLIEDCABLE 0x07e6 /* Allied Cable */
#define USB_VENDOR_STSN 0x07ef /* STSN */
#define USB_VENDOR_CENTURY 0x07f7 /* Century Corp */
#define USB_VENDOR_ZOOM 0x0803 /* Zoom Telephonics */
#define USB_VENDOR_PCS 0x0810 /* Personal Communication Systems */
#define USB_VENDOR_BROADLOGIC 0x0827 /* BroadLogic */
#define USB_VENDOR_HANDSPRING 0x082d /* Handspring */
#define USB_VENDOR_PALM 0x0830 /* Palm Computing */
#define USB_VENDOR_SOURCENEXT 0x0833 /* SOURCENEXT */
#define USB_VENDOR_ACTIONSTAR 0x0835 /* Action Star Enterprise */
#define USB_VENDOR_SAMSUNG_TECHWIN 0x0839 /* Samsung Techwin */
#define USB_VENDOR_ACCTON 0x083a /* Accton Technology */
#define USB_VENDOR_DIAMOND 0x0841 /* Diamond */
#define USB_VENDOR_NETGEAR 0x0846 /* BayNETGEAR */
#define USB_VENDOR_TOPRE 0x0853 /* Topre Corporation */
#define USB_VENDOR_ACTIVEWIRE 0x0854 /* ActiveWire */
#define USB_VENDOR_BBELECTRONICS 0x0856 /* B&B Electronics */
#define USB_VENDOR_PORTGEAR 0x085a /* PortGear */
#define USB_VENDOR_NETGEAR2 0x0864 /* Netgear */
#define USB_VENDOR_SYSTEMTALKS 0x086e /* System Talks */
#define USB_VENDOR_METRICOM 0x0870 /* Metricom */
#define USB_VENDOR_ADESSOKBTEK 0x087c /* ADESSO/Kbtek America */
#define USB_VENDOR_JATON 0x087d /* Jaton */
#define USB_VENDOR_APT 0x0880 /* APT Technologies */
#define USB_VENDOR_BOCARESEARCH 0x0885 /* Boca Research */
#define USB_VENDOR_ANDREA 0x08a8 /* Andrea Electronics */
#define USB_VENDOR_BURRBROWN 0x08bb /* Burr-Brown Japan */
#define USB_VENDOR_2WIRE 0x08c8 /* 2Wire */
#define USB_VENDOR_AIPTEK 0x08ca /* AIPTEK International */
#define USB_VENDOR_SMARTBRIDGES 0x08d1 /* SmartBridges */
#define USB_VENDOR_BILLIONTON 0x08dd /* Billionton Systems */
#define USB_VENDOR_EXTENDED 0x08e9 /* Extended Systems */
#define USB_VENDOR_MSYSTEMS 0x08ec /* M-Systems */
#define USB_VENDOR_AUTHENTEC 0x08ff /* AuthenTec */
#define USB_VENDOR_AUDIOTECHNICA 0x0909 /* Audio-Technica */
#define USB_VENDOR_TRUMPION 0x090a /* Trumpion Microelectronics */
#define USB_VENDOR_FEIYA 0x090c /* Feiya */
#define USB_VENDOR_ALATION 0x0910 /* Alation Systems */
#define USB_VENDOR_GLOBESPAN 0x0915 /* Globespan */
#define USB_VENDOR_CONCORDCAMERA 0x0919 /* Concord Camera */
#define USB_VENDOR_GARMIN 0x091e /* Garmin International */
#define USB_VENDOR_GOHUBS 0x0921 /* GoHubs */
#define USB_VENDOR_XEROX 0x0924 /* Xerox */
#define USB_VENDOR_BIOMETRIC 0x0929 /* American Biometric Company */
#define USB_VENDOR_TOSHIBA 0x0930 /* Toshiba */
#define USB_VENDOR_PLEXTOR 0x093b /* Plextor */
#define USB_VENDOR_INTREPIDCS 0x093c /* Intrepid */
#define USB_VENDOR_YANO 0x094f /* Yano */
#define USB_VENDOR_KINGSTON 0x0951 /* Kingston Technology */
#define USB_VENDOR_BLUEWATER 0x0956 /* BlueWater Systems */
#define USB_VENDOR_AGILENT 0x0957 /* Agilent Technologies */
#define USB_VENDOR_GUDE 0x0959 /* Gude ADS */
#define USB_VENDOR_PORTSMITH 0x095a /* Portsmith */
#define USB_VENDOR_ACERW 0x0967 /* Acer */
#define USB_VENDOR_ADIRONDACK 0x0976 /* Adirondack Wire & Cable */
#define USB_VENDOR_BECKHOFF 0x0978 /* Beckhoff */
#define USB_VENDOR_MINDSATWORK 0x097a /* Minds At Work */
#define USB_VENDOR_POINTCHIPS 0x09a6 /* PointChips */
#define USB_VENDOR_INTERSIL 0x09aa /* Intersil */
#define USB_VENDOR_ALTIUS 0x09b3 /* Altius Solutions */
#define USB_VENDOR_ARRIS 0x09c1 /* Arris Interactive */
#define USB_VENDOR_ACTIVCARD 0x09c3 /* ACTIVCARD */
#define USB_VENDOR_ACTISYS 0x09c4 /* ACTiSYS */
#define USB_VENDOR_NOVATEL2 0x09d7 /* Novatel Wireless */
#define USB_VENDOR_AFOURTECH 0x09da /* A-FOUR TECH */
#define USB_VENDOR_AIMEX 0x09dc /* AIMEX */
#define USB_VENDOR_ADDONICS 0x09df /* Addonics Technologies */
#define USB_VENDOR_AKAI 0x09e8 /* AKAI professional M.I. */
#define USB_VENDOR_ARESCOM 0x09f5 /* ARESCOM */
#define USB_VENDOR_BAY 0x09f9 /* Bay Associates */
#define USB_VENDOR_ALTERA 0x09fb /* Altera */
#define USB_VENDOR_CSR 0x0a12 /* Cambridge Silicon Radio */
#define USB_VENDOR_TREK 0x0a16 /* Trek Technology */
#define USB_VENDOR_ASAHIOPTICAL 0x0a17 /* Asahi Optical */
#define USB_VENDOR_BOCASYSTEMS 0x0a43 /* Boca Systems */
#define USB_VENDOR_SHANTOU 0x0a46 /* ShanTou */
#define USB_VENDOR_MEDIAGEAR 0x0a48 /* MediaGear */
#define USB_VENDOR_BROADCOM 0x0a5c /* Broadcom */
#define USB_VENDOR_GREENHOUSE 0x0a6b /* GREENHOUSE */
#define USB_VENDOR_GEOCAST 0x0a79 /* Geocast Network Systems */
#define USB_VENDOR_IDQUANTIQUE 0x0aba /* id Quantique */
#define USB_VENDOR_ZYDAS 0x0ace /* Zydas Technology Corporation */
#define USB_VENDOR_NEODIO 0x0aec /* Neodio */
#define USB_VENDOR_OPTION 0x0af0 /* Option N.V: */
#define USB_VENDOR_ASUS 0x0b05 /* ASUSTeK Computer */
#define USB_VENDOR_TODOS 0x0b0c /* Todos Data System */
#define USB_VENDOR_SIIG2 0x0b39 /* SIIG */
#define USB_VENDOR_TEKRAM 0x0b3b /* Tekram Technology */
#define USB_VENDOR_HAL 0x0b41 /* HAL Corporation */
#define USB_VENDOR_EMS 0x0b43 /* EMS Production */
#define USB_VENDOR_NEC2 0x0b62 /* NEC */
#define USB_VENDOR_ATI2 0x0b6f /* ATI */
#define USB_VENDOR_ZEEVO 0x0b7a /* Zeevo, Inc. */
#define USB_VENDOR_KURUSUGAWA 0x0b7e /* Kurusugawa Electronics, Inc. */
#define USB_VENDOR_ASIX 0x0b95 /* ASIX Electronics */
#define USB_VENDOR_O2MICRO 0x0b97 /* O2 Micro, Inc. */
#define USB_VENDOR_USR 0x0baf /* U.S. Robotics */
#define USB_VENDOR_AMBIT 0x0bb2 /* Ambit Microsystems */
#define USB_VENDOR_HTC 0x0bb4 /* HTC */
#define USB_VENDOR_REALTEK 0x0bda /* Realtek */
#define USB_VENDOR_ADDONICS2 0x0bf6 /* Addonics Technology */
#define USB_VENDOR_FSC 0x0bf8 /* Fujitsu Siemens Computers */
#define USB_VENDOR_AGATE 0x0c08 /* Agate Technologies */
#define USB_VENDOR_DMI 0x0c0b /* DMI */
#define USB_VENDOR_CHICONY2 0x0c45 /* Chicony */
#define USB_VENDOR_SEALEVEL 0x0c52 /* Sealevel System */
#define USB_VENDOR_LUWEN 0x0c76 /* Luwen */
#define USB_VENDOR_KYOCERA2 0x0c88 /* Kyocera Wireless Corp. */
#define USB_VENDOR_ZCOM 0x0cde /* Z-Com */
#define USB_VENDOR_ATHEROS2 0x0cf3 /* Atheros Communications */
#define USB_VENDOR_TANGTOP 0x0d3d /* Tangtop */
#define USB_VENDOR_SMC3 0x0d5c /* Standard Microsystems */
#define USB_VENDOR_ADDON 0x0d7d /* Add-on Technology */
#define USB_VENDOR_ACDC 0x0d7e /* American Computer & Digital Components */
#define USB_VENDOR_ABC 0x0d8c /* ABC */
#define USB_VENDOR_CONCEPTRONIC 0x0d8e /* Conceptronic */
#define USB_VENDOR_SKANHEX 0x0d96 /* Skanhex Technology, Inc. */
#define USB_VENDOR_MSI 0x0db0 /* Micro Star International */
#define USB_VENDOR_ELCON 0x0db7 /* ELCON Systemtechnik */
#define USB_VENDOR_NETAC 0x0dd8 /* Netac */
#define USB_VENDOR_SITECOMEU 0x0df6 /* Sitecom Europe */
#define USB_VENDOR_MOBILEACTION 0x0df7 /* Mobile Action */
#define USB_VENDOR_SPEEDDRAGON 0x0e55 /* Speed Dragon Multimedia */
#define USB_VENDOR_HAWKING 0x0e66 /* Hawking */
#define USB_VENDOR_FOSSIL 0x0e67 /* Fossil, Inc */
#define USB_VENDOR_GMATE 0x0e7e /* G.Mate, Inc */
#define USB_VENDOR_OTI 0x0ea0 /* Ours Technology */
#define USB_VENDOR_YISO 0x0eab /* Yiso Wireless Co. */
#define USB_VENDOR_PILOTECH 0x0eaf /* Pilotech */
#define USB_VENDOR_NOVATECH 0x0eb0 /* NovaTech */
#define USB_VENDOR_ITEGNO 0x0eba /* iTegno */
#define USB_VENDOR_WINMAXGROUP 0x0ed1 /* WinMaxGroup */
#define USB_VENDOR_TOD 0x0ede /* TOD */
#define USB_VENDOR_EGALAX 0x0eef /* eGalax, Inc. */
#define USB_VENDOR_AIRPRIME 0x0f3d /* AirPrime, Inc. */
#define USB_VENDOR_MICROTUNE 0x0f4d /* Microtune */
#define USB_VENDOR_VTECH 0x0f88 /* VTech */
#define USB_VENDOR_FALCOM 0x0f94 /* Falcom Wireless Communications GmbH */
#define USB_VENDOR_RIM 0x0fca /* Research In Motion */
#define USB_VENDOR_DYNASTREAM 0x0fcf /* Dynastream Innovations */
#define USB_VENDOR_QUALCOMM 0x1004 /* Qualcomm */
#define USB_VENDOR_DESKNOTE 0x1019 /* Desknote */
#define USB_VENDOR_GIGABYTE 0x1044 /* GIGABYTE */
#define USB_VENDOR_WESTERN 0x1058 /* Western Digital */
#define USB_VENDOR_MOTOROLA 0x1063 /* Motorola */
#define USB_VENDOR_CCYU 0x1065 /* CCYU Technology */
#define USB_VENDOR_CURITEL 0x106c /* Curitel Communications Inc */
#define USB_VENDOR_SILABS2 0x10a6 /* SILABS2 */
#define USB_VENDOR_USI 0x10ab /* USI */
#define USB_VENDOR_PLX 0x10b5 /* PLX */
#define USB_VENDOR_ASANTE 0x10bd /* Asante */
#define USB_VENDOR_SILABS 0x10c4 /* Silicon Labs */
#define USB_VENDOR_ANALOG 0x1110 /* Analog Devices */
#define USB_VENDOR_TENX 0x1130 /* Ten X Technology, Inc. */
#define USB_VENDOR_ISSC 0x1131 /* Integrated System Solution Corp. */
#define USB_VENDOR_JRC 0x1145 /* Japan Radio Company */
#define USB_VENDOR_SPHAIRON 0x114b /* Sphairon Access Systems GmbH */
#define USB_VENDOR_DELORME 0x1163 /* DeLorme */
#define USB_VENDOR_SERVERWORKS 0x1166 /* ServerWorks */
#define USB_VENDOR_ACERCM 0x1189 /* Acer Communications & Multimedia */
#define USB_VENDOR_SIERRA 0x1199 /* Sierra Wireless */
#define USB_VENDOR_TOPFIELD 0x11db /* Topfield Co., Ltd */
#define USB_VENDOR_SIEMENS3 0x11f5 /* Siemens */
#define USB_VENDOR_PROLIFIC2 0x11f6 /* Prolific */
#define USB_VENDOR_ALCATEL 0x11f7 /* Alcatel */
#define USB_VENDOR_UNKNOWN3 0x1233 /* Unknown vendor */
#define USB_VENDOR_TSUNAMI 0x1241 /* Tsunami */
#define USB_VENDOR_PHEENET 0x124a /* Pheenet */
#define USB_VENDOR_TARGUS 0x1267 /* Targus */
#define USB_VENDOR_TWINMOS 0x126f /* TwinMOS */
#define USB_VENDOR_TENDA 0x1286 /* Tenda */
#define USB_VENDOR_CREATIVE2 0x1292 /* Creative Labs */
#define USB_VENDOR_BELKIN2 0x1293 /* Belkin Components */
#define USB_VENDOR_CYBERTAN 0x129b /* CyberTAN Technology */
#define USB_VENDOR_HUAWEI 0x12d1 /* Huawei Technologies */
#define USB_VENDOR_ARANEUS 0x12d8 /* Araneus Information Systems */
#define USB_VENDOR_TAPWAVE 0x12ef /* Tapwave */
#define USB_VENDOR_AINCOMM 0x12fd /* Aincomm */
#define USB_VENDOR_MOBILITY 0x1342 /* Mobility */
#define USB_VENDOR_DICKSMITH 0x1371 /* Dick Smith Electronics */
#define USB_VENDOR_NETGEAR3 0x1385 /* Netgear */
#define USB_VENDOR_BALTECH 0x13ad /* Baltech */
#define USB_VENDOR_CISCOLINKSYS 0x13b1 /* Cisco-Linksys */
#define USB_VENDOR_SHARK 0x13d2 /* Shark */
#define USB_VENDOR_NOVATEL 0x1410 /* Novatel Wireless */
#define USB_VENDOR_MERLIN 0x1416 /* Merlin */
#define USB_VENDOR_WISTRONNEWEB 0x1435 /* Wistron NeWeb */
#define USB_VENDOR_RADIOSHACK 0x1453 /* Radio Shack */
#define USB_VENDOR_HUAWEI3COM 0x1472 /* Huawei-3Com */
#define USB_VENDOR_SILICOM 0x1485 /* Silicom */
#define USB_VENDOR_RALINK 0x148f /* Ralink Technology */
#define USB_VENDOR_IMAGINATION 0x149a /* Imagination Technologies */
#define USB_VENDOR_CONCEPTRONIC2 0x14b2 /* Conceptronic */
#define USB_VENDOR_PLANEX3 0x14ea /* Planex Communications */
#define USB_VENDOR_SILICONPORTALS 0x1527 /* Silicon Portals */
#define USB_VENDOR_UBIQUAM 0x1529 /* UBIQUAM Co., Ltd. */
#define USB_VENDOR_UBLOX 0x1546 /* U-blox */
#define USB_VENDOR_PNY 0x154b /* PNY */
#define USB_VENDOR_OQO 0x1557 /* OQO */
#define USB_VENDOR_UMEDIA 0x157e /* U-MEDIA Communications */
#define USB_VENDOR_FIBERLINE 0x1582 /* Fiberline */
#define USB_VENDOR_SPARKLAN 0x15a9 /* SparkLAN */
#define USB_VENDOR_SOHOWARE 0x15e8 /* SOHOware */
#define USB_VENDOR_UMAX 0x1606 /* UMAX Data Systems */
#define USB_VENDOR_INSIDEOUT 0x1608 /* Inside Out Networks */
#define USB_VENDOR_GOODWAY 0x1631 /* Good Way Technology */
#define USB_VENDOR_ENTREGA 0x1645 /* Entrega */
#define USB_VENDOR_ACTIONTEC 0x1668 /* Actiontec Electronics */
#define USB_VENDOR_ATHEROS 0x168c /* Atheros Communications */
#define USB_VENDOR_GIGASET 0x1690 /* Gigaset */
#define USB_VENDOR_GLOBALSUN 0x16ab /* Global Sun Technology */
#define USB_VENDOR_ANYDATA 0x16d5 /* AnyDATA Corporation */
#define USB_VENDOR_JABLOTRON 0x16d6 /* Jablotron */
#define USB_VENDOR_CMOTECH 0x16d8 /* CMOTECH Co., Ltd. */
#define USB_VENDOR_AXESSTEL 0x1726 /* Axesstel Co., Ltd. */
#define USB_VENDOR_LINKSYS4 0x1737 /* Linksys */
#define USB_VENDOR_SENAO 0x1740 /* Senao */
#define USB_VENDOR_METAGEEK 0x1781 /* MetaGeek */
#define USB_VENDOR_AMIT 0x18c5 /* AMIT */
#define USB_VENDOR_QCOM 0x18e8 /* Qcom */
#define USB_VENDOR_LINKSYS3 0x1915 /* Linksys */
#define USB_VENDOR_QUALCOMMINC 0x19d2 /* Qualcomm, Incorporated */
#define USB_VENDOR_STELERA 0x1a8d /* Stelera Wireless */
#define USB_VENDOR_DLINK 0x2001 /* D-Link */
#define USB_VENDOR_PLANEX2 0x2019 /* Planex Communications */
#define USB_VENDOR_ERICSSON 0x2282 /* Ericsson */
#define USB_VENDOR_MOTOROLA2 0x22b8 /* Motorola */
#define USB_VENDOR_TRIPPLITE 0x2478 /* Tripp-Lite */
#define USB_VENDOR_HIROSE 0x2631 /* Hirose Electric */
#define USB_VENDOR_NHJ 0x2770 /* NHJ */
#define USB_VENDOR_PLANEX 0x2c02 /* Planex Communications */
#define USB_VENDOR_VIDZMEDIA 0x3275 /* VidzMedia Pte Ltd */
#define USB_VENDOR_AEI 0x3334 /* AEI */
#define USB_VENDOR_HANK 0x3353 /* Hank Connection */
#define USB_VENDOR_PQI 0x3538 /* PQI */
#define USB_VENDOR_DAISY 0x3579 /* Daisy Technology */
#define USB_VENDOR_NI 0x3923 /* National Instruments */
#define USB_VENDOR_MICRONET 0x3980 /* Micronet Communications */
#define USB_VENDOR_IODATA2 0x40bb /* I-O Data */
#define USB_VENDOR_IRIVER 0x4102 /* iRiver */
#define USB_VENDOR_DELL 0x413c /* Dell */
#define USB_VENDOR_WCH 0x4348 /* QinHeng Electronics */
#define USB_VENDOR_ACEECA 0x4766 /* Aceeca */
#define USB_VENDOR_AVERATEC 0x50c2 /* Averatec */
#define USB_VENDOR_SWEEX 0x5173 /* Sweex */
#define USB_VENDOR_ONSPEC2 0x55aa /* OnSpec Electronic Inc. */
#define USB_VENDOR_ZINWELL 0x5a57 /* Zinwell */
#define USB_VENDOR_SITECOM 0x6189 /* Sitecom */
#define USB_VENDOR_ARKMICRO 0x6547 /* Arkmicro Technologies Inc. */
#define USB_VENDOR_3COM2 0x6891 /* 3Com */
#define USB_VENDOR_INTEL 0x8086 /* Intel */
#define USB_VENDOR_SITECOM2 0x9016 /* Sitecom */
#define USB_VENDOR_MOSCHIP 0x9710 /* MosChip Semiconductor */
#define USB_VENDOR_3COM3 0xa727 /* 3Com */
#define USB_VENDOR_HP2 0xf003 /* Hewlett Packard */
#define USB_VENDOR_USRP 0xfffe /* GNU Radio USRP */
/*
* List of known products. Grouped by vendor.
*/
/* 3Com products */
#define USB_PRODUCT_3COM_HOMECONN 0x009d /* HomeConnect Camera */
#define USB_PRODUCT_3COM_3CREB96 0x00a0 /* Bluetooth USB Adapter */
#define USB_PRODUCT_3COM_3C19250 0x03e8 /* 3C19250 Ethernet Adapter */
#define USB_PRODUCT_3COM_3CRSHEW696 0x0a01 /* 3CRSHEW696 Wireless Adapter */
#define USB_PRODUCT_3COM_3C460 0x11f8 /* HomeConnect 3C460 */
#define USB_PRODUCT_3COM_USR56K 0x3021 /* U.S.Robotics 56000 Voice FaxModem Pro */
#define USB_PRODUCT_3COM_3C460B 0x4601 /* HomeConnect 3C460B */
#define USB_PRODUCT_3COM2_3CRUSB10075 0xa727 /* 3CRUSB10075 */
#define USB_PRODUCT_3COM3_AR5523_1 0x6893 /* AR5523 */
#define USB_PRODUCT_3COM3_AR5523_2 0x6895 /* AR5523 */
#define USB_PRODUCT_3COM3_AR5523_3 0x6897 /* AR5523 */
#define USB_PRODUCT_3COMUSR_OFFICECONN 0x0082 /* 3Com OfficeConnect Analog Modem */
#define USB_PRODUCT_3COMUSR_USRISDN 0x008f /* 3Com U.S. Robotics Pro ISDN TA */
#define USB_PRODUCT_3COMUSR_HOMECONN 0x009d /* 3Com HomeConnect Camera */
#define USB_PRODUCT_3COMUSR_USR56K 0x3021 /* U.S. Robotics 56000 Voice FaxModem Pro */
/* AboCom products */
#define USB_PRODUCT_ABOCOM_XX1 0x110c /* XX1 */
#define USB_PRODUCT_ABOCOM_XX2 0x200c /* XX2 */
#define USB_PRODUCT_ABOCOM_URE450 0x4000 /* URE450 Ethernet Adapter */
#define USB_PRODUCT_ABOCOM_UFE1000 0x4002 /* UFE1000 Fast Ethernet Adapter */
#define USB_PRODUCT_ABOCOM_DSB650TX_PNA 0x4003 /* 1/10/100 Ethernet Adapter */
#define USB_PRODUCT_ABOCOM_XX4 0x4004 /* XX4 */
#define USB_PRODUCT_ABOCOM_XX5 0x4007 /* XX5 */
#define USB_PRODUCT_ABOCOM_XX6 0x400b /* XX6 */
#define USB_PRODUCT_ABOCOM_XX7 0x400c /* XX7 */
#define USB_PRODUCT_ABOCOM_RTL8151 0x401a /* RTL8151 */
#define USB_PRODUCT_ABOCOM_XX8 0x4102 /* XX8 */
#define USB_PRODUCT_ABOCOM_XX9 0x4104 /* XX9 */
#define USB_PRODUCT_ABOCOM_UF200 0x420a /* UF200 Ethernet */
#define USB_PRODUCT_ABOCOM_WL54 0x6001 /* WL54 */
#define USB_PRODUCT_ABOCOM_XX10 0xabc1 /* XX10 */
#define USB_PRODUCT_ABOCOM_BWU613 0xb000 /* BWU613 */
#define USB_PRODUCT_ABOCOM_HWU54DM 0xb21b /* HWU54DM */
#define USB_PRODUCT_ABOCOM_RT2573_2 0xb21c /* RT2573 */
#define USB_PRODUCT_ABOCOM_RT2573_3 0xb21d /* RT2573 */
#define USB_PRODUCT_ABOCOM_RT2573_4 0xb21e /* RT2573 */
#define USB_PRODUCT_ABOCOM_WUG2700 0xb21f /* WUG2700 */
/* Accton products */
#define USB_PRODUCT_ACCTON_USB320_EC 0x1046 /* USB320-EC Ethernet Adapter */
#define USB_PRODUCT_ACCTON_2664W 0x3501 /* 2664W */
#define USB_PRODUCT_ACCTON_111 0x3503 /* T-Sinus 111 Wireless Adapter */
#define USB_PRODUCT_ACCTON_SMCWUSBG 0x4505 /* SMCWUSB-G */
#define USB_PRODUCT_ACCTON_PRISM_GT 0x4521 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_ACCTON_SS1001 0x5046 /* SpeedStream Ethernet Adapter */
#define USB_PRODUCT_ACCTON_ZD1211B 0xe501 /* ZD1211B */
/* Aceeca products */
#define USB_PRODUCT_ACEECA_MEZ1000 0x0001 /* MEZ1000 RDA */
/* Acer Communications & Multimedia (oemd by Surecom) */
#define USB_PRODUCT_ACERCM_EP1427X2 0x0893 /* EP-1427X-2 Ethernet Adapter */
/* Acer Labs products */
#define USB_PRODUCT_ACERLABS_M5632 0x5632 /* USB 2.0 Data Link */
/* Acer Peripherals, Inc. products */
#define USB_PRODUCT_ACERP_ACERSCAN_C310U 0x12a6 /* Acerscan C310U */
#define USB_PRODUCT_ACERP_ACERSCAN_320U 0x2022 /* Acerscan 320U */
#define USB_PRODUCT_ACERP_ACERSCAN_640U 0x2040 /* Acerscan 640U */
#define USB_PRODUCT_ACERP_ACERSCAN_620U 0x2060 /* Acerscan 620U */
#define USB_PRODUCT_ACERP_ACERSCAN_4300U 0x20b0 /* Benq 3300U/4300U */
#define USB_PRODUCT_ACERP_ACERSCAN_640BT 0x20be /* Acerscan 640BT */
#define USB_PRODUCT_ACERP_ACERSCAN_1240U 0x20c0 /* Acerscan 1240U */
#define USB_PRODUCT_ACERP_ATAPI 0x6003 /* ATA/ATAPI Adapter */
#define USB_PRODUCT_ACERP_AWL300 0x9000 /* AWL300 Wireless Adapter */
#define USB_PRODUCT_ACERP_AWL400 0x9001 /* AWL400 Wireless Adapter */
/* Acer Warp products */
#define USB_PRODUCT_ACERW_WARPLINK 0x0204 /* Warplink */
/* Actiontec, Inc. products */
#define USB_PRODUCT_ACTIONTEC_PRISM_25 0x0408 /* Prism2.5 Wireless Adapter */
#define USB_PRODUCT_ACTIONTEC_PRISM_25A 0x0421 /* Prism2.5 Wireless Adapter A */
#define USB_PRODUCT_ACTIONTEC_FREELAN 0x6106 /* ROPEX FreeLan 802.11b */
#define USB_PRODUCT_ACTIONTEC_UAT1 0x7605 /* UAT1 Wireless Ethernet Adapter */
/* ACTiSYS products */
#define USB_PRODUCT_ACTISYS_IR2000U 0x0011 /* ACT-IR2000U FIR */
/* ActiveWire, Inc. products */
#define USB_PRODUCT_ACTIVEWIRE_IOBOARD 0x0100 /* I/O Board */
#define USB_PRODUCT_ACTIVEWIRE_IOBOARD_FW1 0x0101 /* I/O Board, rev. 1 firmware */
/* Adaptec products */
#define USB_PRODUCT_ADAPTEC_AWN8020 0x0020 /* AWN-8020 WLAN */
/* Addtron products */
#define USB_PRODUCT_ADDTRON_AWU120 0xff31 /* AWU-120 */
/* ADMtek products */
#define USB_PRODUCT_ADMTEK_PEGASUSII_4 0x07c2 /* AN986A Ethernet */
#define USB_PRODUCT_ADMTEK_PEGASUS 0x0986 /* AN986 Ethernet */
#define USB_PRODUCT_ADMTEK_PEGASUSII 0x8511 /* AN8511 Ethernet */
#define USB_PRODUCT_ADMTEK_PEGASUSII_2 0x8513 /* AN8513 Ethernet */
#define USB_PRODUCT_ADMTEK_PEGASUSII_3 0x8515 /* AN8515 Ethernet */
/* ADDON products */
/* PNY OEMs these */
#define USB_PRODUCT_ADDON_ATTACHE 0x1300 /* USB 2.0 Flash Drive */
#define USB_PRODUCT_ADDON_ATTACHE 0x1300 /* USB 2.0 Flash Drive */
#define USB_PRODUCT_ADDON_A256MB 0x1400 /* Attache 256MB USB 2.0 Flash Drive */
#define USB_PRODUCT_ADDON_DISKPRO512 0x1420 /* USB 2.0 Flash Drive (DANE-ELEC zMate 512MB USB flash drive) */
/* Addonics products */
#define USB_PRODUCT_ADDONICS2_CABLE_205 0xa001 /* Cable 205 */
/* ADS products */
#define USB_PRODUCT_ADS_UBS10BT 0x0008 /* UBS-10BT Ethernet */
#define USB_PRODUCT_ADS_UBS10BTX 0x0009 /* UBS-10BT Ethernet */
/* AEI products */
#define USB_PRODUCT_AEI_FASTETHERNET 0x1701 /* Fast Ethernet */
/* Agate Technologies products */
#define USB_PRODUCT_AGATE_QDRIVE 0x0378 /* Q-Drive */
/* AGFA products */
#define USB_PRODUCT_AGFA_SNAPSCAN1212U 0x0001 /* SnapScan 1212U */
#define USB_PRODUCT_AGFA_SNAPSCAN1236U 0x0002 /* SnapScan 1236U */
#define USB_PRODUCT_AGFA_SNAPSCANTOUCH 0x0100 /* SnapScan Touch */
#define USB_PRODUCT_AGFA_SNAPSCAN1212U2 0x2061 /* SnapScan 1212U */
#define USB_PRODUCT_AGFA_SNAPSCANE40 0x208d /* SnapScan e40 */
#define USB_PRODUCT_AGFA_SNAPSCANE50 0x208f /* SnapScan e50 */
#define USB_PRODUCT_AGFA_SNAPSCANE20 0x2091 /* SnapScan e20 */
#define USB_PRODUCT_AGFA_SNAPSCANE25 0x2095 /* SnapScan e25 */
#define USB_PRODUCT_AGFA_SNAPSCANE26 0x2097 /* SnapScan e26 */
#define USB_PRODUCT_AGFA_SNAPSCANE52 0x20fd /* SnapScan e52 */
/* Ain Communication Technology products */
#define USB_PRODUCT_AINCOMM_AWU2000B 0x1001 /* AWU2000B Wireless Adapter */
/* AIPTEK products */
#define USB_PRODUCT_AIPTEK_POCKETCAM3M 0x2011 /* PocketCAM 3Mega */
#define USB_PRODUCT_AIPTEK2_PENCAM_MEGA_1_3 0x504a /* PenCam Mega 1.3 */
/* AirPrime products */
#define USB_PRODUCT_AIRPRIME_PC5220 0x0112 /* CDMA Wireless PC Card */
/* AKS products */
#define USB_PRODUCT_AKS_USBHASP 0x0001 /* USB-HASP 0.06 */
/* Alcor Micro, Inc. products */
#define USB_PRODUCT_ALCOR2_KBD_HUB 0x2802 /* Kbd Hub */
#define USB_PRODUCT_ALCOR_TRANSCEND 0x6387 /* Transcend JetFlash Drive */
#define USB_PRODUCT_ALCOR_MA_KBD_HUB 0x9213 /* MacAlly Kbd Hub */
#define USB_PRODUCT_ALCOR_AU9814 0x9215 /* AU9814 Hub */
#define USB_PRODUCT_ALCOR_UMCR_9361 0x9361 /* USB Multimedia Card Reader */
#define USB_PRODUCT_ALCOR_SM_KBD 0x9410 /* MicroConnectors/StrongMan Keyboard */
#define USB_PRODUCT_ALCOR_NEC_KBD_HUB 0x9472 /* NEC Kbd Hub */
/* Altec Lansing products */
#define USB_PRODUCT_ALTEC_ADA70 0x0070 /* ADA70 Speakers */
#define USB_PRODUCT_ALTEC_ASC495 0xff05 /* ASC495 Speakers */
/* Allied Telesyn International products */
#define USB_PRODUCT_ALLIEDTELESYN_ATUSB100 0xb100 /* AT-USB100 */
/* American Power Conversion products */
#define USB_PRODUCT_APC_UPS 0x0002 /* Uninterruptible Power Supply */
/* Ambit Microsystems products */
#define USB_PRODUCT_AMBIT_WLAN 0x0302 /* WLAN */
#define USB_PRODUCT_AMBIT_NTL_250 0x6098 /* NTL 250 cable modem */
/* AMIT products */
#define USB_PRODUCT_AMIT_CGWLUSB2GO 0x0002 /* CG-WLUSB2GO */
/* Anchor products */
#define USB_PRODUCT_ANCHOR_EZUSB 0x2131 /* EZUSB */
#define USB_PRODUCT_ANCHOR_EZLINK 0x2720 /* EZLINK */
/* AnyData products */
#define USB_PRODUCT_ANYDATA_ADU_E100X 0x6501 /* CDMA 2000 1xRTT/EV-DO USB Modem */
#define USB_PRODUCT_ANYDATA_ADU_500A 0x6502 /* CDMA 2000 EV-DO USB Modem */
/* AOX, Inc. products */
#define USB_PRODUCT_AOX_USB101 0x0008 /* Ethernet */
/* American Power Conversion products */
#define USB_PRODUCT_APC_UPS 0x0002 /* Uninterruptible Power Supply */
/* Apple Computer products */
#define USB_PRODUCT_APPLE_EXT_KBD 0x020c /* Apple Extended USB Keyboard */
#define USB_PRODUCT_APPLE_OPTMOUSE 0x0302 /* Optical mouse */
#define USB_PRODUCT_APPLE_MIGHTYMOUSE 0x0304 /* Mighty Mouse */
#define USB_PRODUCT_APPLE_EXT_KBD_HUB 0x1003 /* Hub in Apple Extended USB Keyboard */
#define USB_PRODUCT_APPLE_SPEAKERS 0x1101 /* Speakers */
#define USB_PRODUCT_APPLE_IPOD 0x1201 /* iPod */
#define USB_PRODUCT_APPLE_IPOD2G 0x1202 /* iPod 2G */
#define USB_PRODUCT_APPLE_IPOD3G 0x1203 /* iPod 3G */
#define USB_PRODUCT_APPLE_IPOD_04 0x1204 /* iPod '04' */
#define USB_PRODUCT_APPLE_IPODMINI 0x1205 /* iPod Mini */
#define USB_PRODUCT_APPLE_IPOD_06 0x1206 /* iPod '06' */
#define USB_PRODUCT_APPLE_IPOD_07 0x1207 /* iPod '07' */
#define USB_PRODUCT_APPLE_IPOD_08 0x1208 /* iPod '08' */
#define USB_PRODUCT_APPLE_IPODVIDEO 0x1209 /* iPod Video */
#define USB_PRODUCT_APPLE_IPODNANO 0x120a /* iPod Nano */
#define USB_PRODUCT_APPLE_IPHONE 0x1290 /* iPhone */
#define USB_PRODUCT_APPLE_IPHONE_3G 0x1292 /* iPhone 3G */
#define USB_PRODUCT_APPLE_ETHERNET 0x1402 /* Ethernet A1277 */
/* Arkmicro Technologies */
#define USB_PRODUCT_ARKMICRO_ARK3116 0x0232 /* ARK3116 Serial */
/* Asahi Optical products */
#define USB_PRODUCT_ASAHIOPTICAL_OPTIO230 0x0004 /* Digital camera */
#define USB_PRODUCT_ASAHIOPTICAL_OPTIO330 0x0006 /* Digital camera */
/* Asante products */
#define USB_PRODUCT_ASANTE_EA 0x1427 /* Ethernet */
/* ASIX Electronics products */
#define USB_PRODUCT_ASIX_AX88172 0x1720 /* 10/100 Ethernet */
#define USB_PRODUCT_ASIX_AX88178 0x1780 /* AX88178 */
#define USB_PRODUCT_ASIX_AX88772 0x7720 /* AX88772 */
/* ASUS products */
#define USB_PRODUCT_ASUS_WL167G 0x1707 /* WL-167g Wireless Adapter */
#define USB_PRODUCT_ASUS_WL159G 0x170c /* WL-159g */
#define USB_PRODUCT_ASUS_A9T_WIFI 0x171b /* A9T wireless */
#define USB_PRODUCT_ASUS_RT2573_1 0x1723 /* RT2573 */
#define USB_PRODUCT_ASUS_RT2573_2 0x1724 /* RT2573 */
#define USB_PRODUCT_ASUS_LCM 0x1726 /* LCM display */
#define USB_PRODUCT_ASUS_P535 0x420f /* ASUS P535 PDA */
/* ATen products */
#define USB_PRODUCT_ATEN_UC1284 0x2001 /* Parallel printer */
#define USB_PRODUCT_ATEN_UC10T 0x2002 /* 10Mbps Ethernet */
#define USB_PRODUCT_ATEN_UC110T 0x2007 /* UC-110T Ethernet */
#define USB_PRODUCT_ATEN_UC232A 0x2008 /* Serial */
#define USB_PRODUCT_ATEN_UC210T 0x2009 /* UC-210T Ethernet */
#define USB_PRODUCT_ATEN_DSB650C 0x4000 /* DSB-650C */
/* Atheros Communications products */
#define USB_PRODUCT_ATHEROS_AR5523 0x0001 /* AR5523 */
#define USB_PRODUCT_ATHEROS_AR5523_NF 0x0002 /* AR5523 (no firmware) */
#define USB_PRODUCT_ATHEROS2_AR5523_1 0x0001 /* AR5523 */
#define USB_PRODUCT_ATHEROS2_AR5523_1_NF 0x0002 /* AR5523 (no firmware) */
#define USB_PRODUCT_ATHEROS2_AR5523_2 0x0003 /* AR5523 */
#define USB_PRODUCT_ATHEROS2_AR5523_2_NF 0x0004 /* AR5523 (no firmware) */
#define USB_PRODUCT_ATHEROS2_AR5523_3 0x0005 /* AR5523 */
#define USB_PRODUCT_ATHEROS2_AR5523_3_NF 0x0006 /* AR5523 (no firmware) */
/* Atmel Comp. products */
#define USB_PRODUCT_ATMEL_UHB124 0x3301 /* UHB124 hub */
#define USB_PRODUCT_ATMEL_DWL120 0x7603 /* DWL-120 Wireless Adapter */
#define USB_PRODUCT_ATMEL_BW002 0x7605 /* BW002 Wireless Adapter */
#define USB_PRODUCT_ATMEL_WL1130USB 0x7613 /* WL-1130 USB */
#define USB_PRODUCT_ATMEL_AT76C505A 0x7614 /* AT76c505a Wireless Adapter */
/* Avision products */
#define USB_PRODUCT_AVISION_1200U 0x0268 /* 1200U scanner */
/* Axesstel products */
#define USB_PRODUCT_AXESSTEL_DATAMODEM 0x1000 /* Data Modem */
/* Baltech products */
#define USB_PRODUCT_BALTECH_CARDREADER 0x9999 /* Card reader */
/* B&B Electronics products */
#define USB_PRODUCT_BBELECTRONICS_USOTL4 0xAC01 /* RS-422/485 */
/* Belkin products */
/*product BELKIN F5U111 0x???? F5U111 Ethernet*/
#define USB_PRODUCT_BELKIN_F5D6050 0x0050 /* F5D6050 802.11b Wireless Adapter */
#define USB_PRODUCT_BELKIN_FBT001V 0x0081 /* FBT001v2 Bluetooth */
#define USB_PRODUCT_BELKIN_FBT003V 0x0084 /* FBT003v2 Bluetooth */
#define USB_PRODUCT_BELKIN_F5U103 0x0103 /* F5U103 Serial */
#define USB_PRODUCT_BELKIN_F5U109 0x0109 /* F5U109 Serial */
#define USB_PRODUCT_BELKIN_USB2SCSI 0x0115 /* USB to SCSI */
#define USB_PRODUCT_BELKIN_F8T012 0x0121 /* F8T012xx1 Bluetooth USB Adapter */
#define USB_PRODUCT_BELKIN_USB2LAN 0x0121 /* USB to LAN */
#define USB_PRODUCT_BELKIN_F5U208 0x0208 /* F5U208 VideoBus II */
#define USB_PRODUCT_BELKIN_F5U237 0x0237 /* F5U237 USB 2.0 7-Port Hub */
#define USB_PRODUCT_BELKIN_F5U257 0x0257 /* F5U257 Serial */
#define USB_PRODUCT_BELKIN_F5U409 0x0409 /* F5U409 Serial */
#define USB_PRODUCT_BELKIN_F6C550AVR 0x0551 /* F6C550-AVR UPS */
#define USB_PRODUCT_BELKIN_F5U120 0x1203 /* F5U120-PC Hub */
#define USB_PRODUCT_BELKIN_ZD1211B 0x4050 /* ZD1211B */
#define USB_PRODUCT_BELKIN_F5D5055 0x5055 /* F5D5055 */
#define USB_PRODUCT_BELKIN_F5D7050 0x7050 /* F5D7050 Wireless Adapter */
#define USB_PRODUCT_BELKIN_F5D7051 0x7051 /* F5D7051 54g USB Network Adapter */
#define USB_PRODUCT_BELKIN_F5D7050A 0x705a /* F5D7050A Wireless Adapter */
/* Also sold as 'Ativa 802.11g wireless card' */
#define USB_PRODUCT_BELKIN_F5D7050_V4000 0x705c /* F5D7050 v4000 Wireless Adapter */
#define USB_PRODUCT_BELKIN_F5D9050V3 0x905b /* F5D9050 ver 3 Wireless Adapter */
#define USB_PRODUCT_BELKIN2_F5U002 0x0002 /* F5U002 Parallel printer */
/* Billionton products */
#define USB_PRODUCT_BILLIONTON_USB100 0x0986 /* USB100N 10/100 FastEthernet */
#define USB_PRODUCT_BILLIONTON_USBLP100 0x0987 /* USB100LP */
#define USB_PRODUCT_BILLIONTON_USBEL100 0x0988 /* USB100EL */
#define USB_PRODUCT_BILLIONTON_USBE100 0x8511 /* USBE100 */
#define USB_PRODUCT_BILLIONTON_USB2AR 0x90ff /* USB2AR Ethernet */
/* Broadcom products */
#define USB_PRODUCT_BROADCOM_BCM2033 0x2033 /* BCM2033 Bluetooth USB dongle */
/* Brother Industries products */
#define USB_PRODUCT_BROTHER_HL1050 0x0002 /* HL-1050 laser printer */
/* Behavior Technology Computer products */
#define USB_PRODUCT_BTC_BTC7932 0x6782 /* Keyboard with mouse port */
/* Canon, Inc. products */
#define USB_PRODUCT_CANON_N656U 0x2206 /* CanoScan N656U */
#define USB_PRODUCT_CANON_N1220U 0x2207 /* CanoScan N1220U */
#define USB_PRODUCT_CANON_D660U 0x2208 /* CanoScan D660U */
#define USB_PRODUCT_CANON_N676U 0x220d /* CanoScan N676U */
#define USB_PRODUCT_CANON_N1240U 0x220e /* CanoScan N1240U */
#define USB_PRODUCT_CANON_LIDE25 0x2220 /* CanoScan LIDE 25 */
#define USB_PRODUCT_CANON_S10 0x3041 /* PowerShot S10 */
#define USB_PRODUCT_CANON_S100 0x3045 /* PowerShot S100 */
#define USB_PRODUCT_CANON_S200 0x3065 /* PowerShot S200 */
#define USB_PRODUCT_CANON_REBELXT 0x30ef /* Digital Rebel XT */
/* CATC products */
#define USB_PRODUCT_CATC_NETMATE 0x000a /* Netmate Ethernet */
#define USB_PRODUCT_CATC_NETMATE2 0x000c /* Netmate2 Ethernet */
#define USB_PRODUCT_CATC_CHIEF 0x000d /* USB Chief Bus & Protocol Analyzer */
#define USB_PRODUCT_CATC_ANDROMEDA 0x1237 /* Andromeda hub */
/* CASIO products */
#define USB_PRODUCT_CASIO_QV_DIGICAM 0x1001 /* QV DigiCam */
#define USB_PRODUCT_CASIO_EXS880 0x1105 /* Exilim EX-S880 */
#define USB_PRODUCT_CASIO_BE300 0x2002 /* BE-300 PDA */
#define USB_PRODUCT_CASIO_NAMELAND 0x4001 /* CASIO Nameland EZ-USB */
/* CCYU products */
#define USB_PRODUCT_CCYU_ED1064 0x2136 /* EasyDisk ED1064 */
/* Century products */
#define USB_PRODUCT_CENTURY_EX35QUAT 0x011e /* Century USB Disk Enclosure */
/* Cherry products */
#define USB_PRODUCT_CHERRY_MY3000KBD 0x0001 /* My3000 keyboard */
#define USB_PRODUCT_CHERRY_MY3000HUB 0x0003 /* My3000 hub */
#define USB_PRODUCT_CHERRY_CYBOARD 0x0004 /* CyBoard Keyboard */
/* Chic Technology products */
#define USB_PRODUCT_CHIC_MOUSE1 0x0001 /* mouse */
#define USB_PRODUCT_CHIC_CYPRESS 0x0003 /* Cypress USB Mouse */
/* Chicony products */
#define USB_PRODUCT_CHICONY_KB8933 0x0001 /* KB-8933 keyboard */
#define USB_PRODUCT_CHICONY2_TWINKLECAM 0x600d /* TwinkleCam USB camera */
/* CH Products */
#define USB_PRODUCT_CHPRODUCTS_PROTHROTTLE 0x00f1 /* Pro Throttle */
#define USB_PRODUCT_CHPRODUCTS_PROPEDALS 0x00f2 /* Pro Pedals */
#define USB_PRODUCT_CHPRODUCTS_FIGHTERSTICK 0x00f3 /* Fighterstick */
#define USB_PRODUCT_CHPRODUCTS_FLIGHTYOKE 0x00ff /* Flight Sim Yoke */
/* Cisco-Linksys products */
#define USB_PRODUCT_CISCOLINKSYS_WUSB54G 0x000d /* WUSB54G Wireless Adapter */
#define USB_PRODUCT_CISCOLINKSYS_WUSB54GP 0x0011 /* WUSB54GP Wireless Adapter */
#define USB_PRODUCT_CISCOLINKSYS_USB200MV2 0x0018 /* USB200M v2 */
#define USB_PRODUCT_CISCOLINKSYS_HU200TS 0x001a /* HU200TS Wireless Adapter */
#define USB_PRODUCT_CISCOLINKSYS_WUSB54GC 0x0020 /* WUSB54GC */
#define USB_PRODUCT_CISCOLINKSYS_WUSB54GR 0x0023 /* WUSB54GR */
#define USB_PRODUCT_CISCOLINKSYS_WUSBF54G 0x0024 /* WUSBF54G */
/* CMOTECH products */
#define USB_PRODUCT_CMOTECH_CNU510 0x5141 /* CMOTECH CDMA Technologies USB modem */
#define USB_PRODUCT_CMOTECH_CNU550 0x5543 /* CDMA 2000 1xRTT/1xEVDO USB modem */
#define USB_PRODUCT_CMOTECH_CDMA_MODEM1 0x6280 /* CMOTECH CDMA Technologies USB modem */
/* Compaq products */
#define USB_PRODUCT_COMPAQ_IPAQPOCKETPC 0x0003 /* iPAQ PocketPC */
#define USB_PRODUCT_COMPAQ_PJB100 0x504a /* Personal Jukebox PJB100 */
#define USB_PRODUCT_COMPAQ_IPAQLINUX 0x505a /* iPAQ Linux */
/* Composite Corp products looks the same as "TANGTOP" */
#define USB_PRODUCT_COMPOSITE_USBPS2 0x0001 /* USB to PS2 Adaptor */
/* Conceptronic products */
#define USB_PRODUCT_CONCEPTRONIC_PRISM_GT 0x3762 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_CONCEPTRONIC_C11U 0x7100 /* C11U */
#define USB_PRODUCT_CONCEPTRONIC_WL210 0x7110 /* WL-210 */
#define USB_PRODUCT_CONCEPTRONIC_AR5523_1 0x7801 /* AR5523 */
#define USB_PRODUCT_CONCEPTRONIC_AR5523_1_NF 0x7802 /* AR5523 (no firmware) */
#define USB_PRODUCT_CONCEPTRONIC_AR5523_2 0x7811 /* AR5523 */
#define USB_PRODUCT_CONCEPTRONIC_AR5523_2_NF 0x7812 /* AR5523 (no firmware) */
#define USB_PRODUCT_CONCEPTRONIC2_C54RU 0x3c02 /* C54RU WLAN */
#define USB_PRODUCT_CONCEPTRONIC2_C54RU2 0x3c22 /* C54RU */
/* Connectix products */
#define USB_PRODUCT_CONNECTIX_QUICKCAM 0x0001 /* QuickCam */
/* Corega products */
#define USB_PRODUCT_COREGA_ETHER_USB_T 0x0001 /* Ether USB-T */
#define USB_PRODUCT_COREGA_FETHER_USB_TX 0x0004 /* FEther USB-TX */
#define USB_PRODUCT_COREGA_WLAN_USB_USB_11 0x000c /* WirelessLAN USB-11 */
#define USB_PRODUCT_COREGA_FETHER_USB_TXS 0x000d /* FEther USB-TXS */
#define USB_PRODUCT_COREGA_WLANUSB 0x0012 /* Wireless LAN Stick-11 */
#define USB_PRODUCT_COREGA_FETHER_USB2_TX 0x0017 /* FEther USB2-TX */
#define USB_PRODUCT_COREGA_WLUSB_11_KEY 0x001a /* ULUSB-11 Key */
#define USB_PRODUCT_COREGA_CGWLUSB2GL 0x002d /* CG-WLUSB2GL */
#define USB_PRODUCT_COREGA_CGWLUSB2GPX 0x002e /* CG-WLUSB2GPX */
#define USB_PRODUCT_COREGA_WLUSB_11_STICK 0x7613 /* WLAN USB Stick 11 */
#define USB_PRODUCT_COREGA_FETHER_USB_TXC 0x9601 /* FEther USB-TXC */
/* Creative products */
#define USB_PRODUCT_CREATIVE_NOMAD_II 0x1002 /* Nomad II MP3 player */
#define USB_PRODUCT_CREATIVE_NOMAD_IIMG 0x4004 /* Nomad II MG */
#define USB_PRODUCT_CREATIVE_NOMAD 0x4106 /* Nomad */
#define USB_PRODUCT_CREATIVE2_VOIP_BLASTER 0x0258 /* Voip Blaster */
#define USB_PRODUCT_CREATIVE3_OPTICAL_MOUSE 0x0001 /* Notebook Optical Mouse */
/* Cambridge Silicon Radio Ltd. products */
#define USB_PRODUCT_CSR_BT_DONGLE 0x0001 /* Bluetooth USB dongle */
#define USB_PRODUCT_CSR_CSRDFU 0xffff /* USB Bluetooth Device in DFU State */
/* CTX products */
#define USB_PRODUCT_CTX_EX1300 0x9999 /* Ex1300 hub */
/* Curitel products */
#define USB_PRODUCT_CURITEL_HX550C 0x1101 /* CDMA 2000 1xRTT USB modem (HX-550C) */
#define USB_PRODUCT_CURITEL_HX57XB 0x2101 /* CDMA 2000 1xRTT USB modem (HX-570/575B/PR-600) */
#define USB_PRODUCT_CURITEL_PC5740 0x3701 /* Broadband Wireless modem */
/* CyberPower products */
#define USB_PRODUCT_CYBERPOWER_1500CAVRLCD 0x0501 /* 1500CAVRLCD */
/* CyberTAN Technology products */
#define USB_PRODUCT_CYBERTAN_TG54USB 0x1666 /* TG54USB */
/* Cypress Semiconductor products */
#define USB_PRODUCT_CYPRESS_MOUSE 0x0001 /* mouse */
#define USB_PRODUCT_CYPRESS_THERMO 0x0002 /* thermometer */
#define USB_PRODUCT_CYPRESS_WISPY1A 0x0bad /* MetaGeek Wi-Spy */
#define USB_PRODUCT_CYPRESS_KBDHUB 0x0101 /* Keyboard/Hub */
#define USB_PRODUCT_CYPRESS_FMRADIO 0x1002 /* FM Radio */
#define USB_PRODUCT_CYPRESS_USBRS232 0x5500 /* USB-RS232 Interface */
#define USB_PRODUCT_CYPRESS_SLIM_HUB 0x6560 /* Slim Hub */
/* Daisy Technology products */
#define USB_PRODUCT_DAISY_DMC 0x6901 /* USB MultiMedia Reader */
/* Dallas Semiconductor products */
#define USB_PRODUCT_DALLAS_J6502 0x4201 /* J-6502 speakers */
/* Dell products */
#define USB_PRODUCT_DELL_PORT 0x0058 /* Port Replicator */
#define USB_PRODUCT_DELL_AIO926 0x5115 /* Photo AIO Printer 926 */
#define USB_PRODUCT_DELL_BC02 0x8000 /* BC02 Bluetooth USB Adapter */
#define USB_PRODUCT_DELL_PRISM_GT_1 0x8102 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_DELL_TM350 0x8103 /* TrueMobile 350 Bluetooth USB Adapter */
#define USB_PRODUCT_DELL_PRISM_GT_2 0x8104 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_DELL_U740 0x8135 /* Dell U740 CDMA */
/* Delorme Paublishing products */
#define USB_PRODUCT_DELORME_EARTHMATE 0x0100 /* Earthmate GPS */
/* Desknote products */
#define USB_PRODUCT_DESKNOTE_UCR_61S2B 0x0c55 /* UCR-61S2B */
/* Diamond products */
#define USB_PRODUCT_DIAMOND_RIO500USB 0x0001 /* Rio 500 USB */
/* Dick Smith Electronics (really C-Net) products */
#define USB_PRODUCT_DICKSMITH_RT2573 0x9022 /* RT2573 */
#define USB_PRODUCT_DICKSMITH_CWD854F 0x9032 /* C-Net CWD-854 rev F */
/* Digi International products */
#define USB_PRODUCT_DIGI_ACCELEPORT2 0x0002 /* AccelePort USB 2 */
#define USB_PRODUCT_DIGI_ACCELEPORT4 0x0004 /* AccelePort USB 4 */
#define USB_PRODUCT_DIGI_ACCELEPORT8 0x0008 /* AccelePort USB 8 */
/* D-Link products */
/*product DLINK DSBS25 0x0100 DSB-S25 serial*/
#define USB_PRODUCT_DLINK_DUBE100 0x1a00 /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX4 0x200c /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DWL120E 0x3200 /* DWL-120 rev E */
#define USB_PRODUCT_DLINK_DWL122 0x3700 /* DWL-122 */
#define USB_PRODUCT_DLINK_DWLG120 0x3701 /* DWL-G120 */
#define USB_PRODUCT_DLINK_DWL120F 0x3702 /* DWL-120 rev F */
#define USB_PRODUCT_DLINK_DWLAG132 0x3a00 /* DWL-AG132 */
#define USB_PRODUCT_DLINK_DWLAG132_NF 0x3a01 /* DWL-AG132 (no firmware) */
#define USB_PRODUCT_DLINK_DWLG132 0x3a02 /* DWL-G132 */
#define USB_PRODUCT_DLINK_DWLG132_NF 0x3a03 /* DWL-G132 (no firmware) */
#define USB_PRODUCT_DLINK_DWLAG122 0x3a04 /* DWL-AG122 */
#define USB_PRODUCT_DLINK_DWLAG122_NF 0x3a05 /* DWL-AG122 (no firmware) */
#define USB_PRODUCT_DLINK_DWLG122 0x3c00 /* DWL-G122 b1 Wireless Adapter */
#define USB_PRODUCT_DLINK_DUBE100B1 0x3c05 /* DUB-E100 rev B1 */
#define USB_PRODUCT_DLINK_DSB650C 0x4000 /* 10Mbps Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX1 0x4001 /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX 0x4002 /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX_PNA 0x4003 /* 1/10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX3 0x400b /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650TX2 0x4102 /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK_DSB650 0xabc1 /* 10/100 Ethernet */
#define USB_PRODUCT_DLINK2_DWLG122C1 0x3c03 /* DWL-G122 c1 */
#define USB_PRODUCT_DLINK2_WUA1340 0x3c04 /* WUA-1340 */
#define USB_PRODUCT_DLINK2_DWA111 0x3c06 /* DWA-111 */
#define USB_PRODUCT_DLINK2_DWA110 0x3c07 /* DWA-110 */
/* DMI products */
#define USB_PRODUCT_DMI_CFSM_RW 0xa109 /* CF/SM Reader/Writer */
/* DrayTek products */
#define USB_PRODUCT_DRAYTEK_VIGOR550 0x0550 /* Vigor550 */
/* Dynastream Innovations */
#define USB_PRODUCT_DYNASTREAM_ANTDEVBOARD 0x1003 /* ANT dev board */
/* EIZO products */
#define USB_PRODUCT_EIZO_HUB 0x0000 /* hub */
#define USB_PRODUCT_EIZO_MONITOR 0x0001 /* monitor */
/* ELCON Systemtechnik products */
#define USB_PRODUCT_ELCON_PLAN 0x0002 /* Goldpfeil P-LAN */
/* Elecom products */
#define USB_PRODUCT_ELECOM_MOUSE29UO 0x0002 /* mouse 29UO */
#define USB_PRODUCT_ELECOM_LDUSBTX0 0x200c /* LD-USB/TX */
#define USB_PRODUCT_ELECOM_LDUSBTX1 0x4002 /* LD-USB/TX */
#define USB_PRODUCT_ELECOM_LDUSBLTX 0x4005 /* LD-USBL/TX */
#define USB_PRODUCT_ELECOM_LDUSBTX2 0x400b /* LD-USB/TX */
#define USB_PRODUCT_ELECOM_LDUSB20 0x4010 /* LD-USB20 */
#define USB_PRODUCT_ELECOM_UCSGT 0x5003 /* UC-SGT */
#define USB_PRODUCT_ELECOM_UCSGT0 0x5004 /* UC-SGT */
#define USB_PRODUCT_ELECOM_LDUSBTX3 0xabc1 /* LD-USB/TX */
/* Elsa products */
#define USB_PRODUCT_ELSA_MODEM1 0x2265 /* ELSA Modem Board */
#define USB_PRODUCT_ELSA_USB2ETHERNET 0x3000 /* Microlink USB2Ethernet */
/* EMS products */
#define USB_PRODUCT_EMS_DUAL_SHOOTER 0x0003 /* PSX gun controller converter */
/* Entrega products */
#define USB_PRODUCT_ENTREGA_1S 0x0001 /* 1S serial */
#define USB_PRODUCT_ENTREGA_2S 0x0002 /* 2S serial */
#define USB_PRODUCT_ENTREGA_1S25 0x0003 /* 1S25 serial */
#define USB_PRODUCT_ENTREGA_4S 0x0004 /* 4S serial */
#define USB_PRODUCT_ENTREGA_E45 0x0005 /* E45 Ethernet */
#define USB_PRODUCT_ENTREGA_CENTRONICS 0x0006 /* Parallel Port */
#define USB_PRODUCT_ENTREGA_XX1 0x0008 /* Ethernet */
#define USB_PRODUCT_ENTREGA_1S9 0x0093 /* 1S9 serial */
#define USB_PRODUCT_ENTREGA_EZUSB 0x8000 /* EZ-USB */
/*product ENTREGA SERIAL 0x8001 DB25 Serial*/
#define USB_PRODUCT_ENTREGA_2U4S 0x8004 /* 2U4S serial/usb hub */
#define USB_PRODUCT_ENTREGA_XX2 0x8005 /* Ethernet */
/*product ENTREGA SERIAL_DB9 0x8093 DB9 Serial*/
/* Epson products */
#define USB_PRODUCT_EPSON_PRINTER1 0x0001 /* USB Printer */
#define USB_PRODUCT_EPSON_PRINTER2 0x0002 /* ISD USB Smart Cable for Mac */
#define USB_PRODUCT_EPSON_PRINTER3 0x0003 /* ISD USB Smart Cable */
#define USB_PRODUCT_EPSON_PRINTER5 0x0005 /* USB Printer */
#define USB_PRODUCT_EPSON_636 0x0101 /* Perfection 636U / 636Photo scanner */
#define USB_PRODUCT_EPSON_610 0x0103 /* Perfection 610 scanner */
#define USB_PRODUCT_EPSON_1200 0x0104 /* Perfection 1200U / 1200Photo scanner */
#define USB_PRODUCT_EPSON_1600 0x0107 /* Expression 1600 scanner */
#define USB_PRODUCT_EPSON_1640 0x010a /* Perfection 1640SU scanner */
#define USB_PRODUCT_EPSON_1240 0x010b /* Perfection 1240U / 1240Photo scanner */
#define USB_PRODUCT_EPSON_640U 0x010c /* Perfection 640U scanner */
#define USB_PRODUCT_EPSON_1250 0x010f /* Perfection 1250U / 1250Photo scanner */
#define USB_PRODUCT_EPSON_1650 0x0110 /* Perfection 1650 scanner */
#define USB_PRODUCT_EPSON_GT9700F 0x0112 /* GT-9700F scanner */
#define USB_PRODUCT_EPSON_GT9300UF 0x011b /* GT-9300UF scanner */
#define USB_PRODUCT_EPSON_3200 0x011c /* Perfection 3200 scanner */
#define USB_PRODUCT_EPSON_1260 0x011d /* Perfection 1260 scanner */
#define USB_PRODUCT_EPSON_1660 0x011e /* Perfection 1660 scanner */
#define USB_PRODUCT_EPSON_1670 0x011f /* Perfection 1670 scanner */
#define USB_PRODUCT_EPSON_1270 0x0120 /* Perfection 1270 scanner */
#define USB_PRODUCT_EPSON_2480 0x0121 /* Perfection 2480 scanner */
#define USB_PRODUCT_EPSON_3590 0x0122 /* Perfection 3590 scanner */
#define USB_PRODUCT_EPSON_4990 0x012a /* Perfection 4990 Photo scanner */
#define USB_PRODUCT_EPSON_STYLUS_875DC 0x0601 /* Stylus Photo 875DC Card Reader */
#define USB_PRODUCT_EPSON_STYLUS_895 0x0602 /* Stylus Photo 895 Card Reader */
#define USB_PRODUCT_EPSON_CX5400 0x0808 /* CX5400 scanner */
#define USB_PRODUCT_EPSON_3500 0x080e /* CX-3500/3600/3650 MFP */
#define USB_PRODUCT_EPSON_RX425 0x080f /* Stylus Photo RX425 scanner */
#define USB_PRODUCT_EPSON_DX3800 0x0818 /* CX3700/CX3800/DX38x0 MFP scanner */
#define USB_PRODUCT_EPSON_4800 0x0819 /* CX4700/CX4800/DX48x0 MFP scanner */
#define USB_PRODUCT_EPSON_4200 0x0820 /* CX4100/CX4200/DX4200 MFP scanner */
#define USB_PRODUCT_EPSON_5000 0x082b /* CX4900/CX5000/DX50x0 MFP scanner */
#define USB_PRODUCT_EPSON_6000 0x082e /* CX5900/CX6000/DX60x0 MFP scanner */
#define USB_PRODUCT_EPSON_DX4000 0x082f /* DX4000 MFP scanner */
#define USB_PRODUCT_EPSON_DX7400 0x0838 /* CX7300/CX7400/DX7400 MFP scanner */
#define USB_PRODUCT_EPSON_DX8400 0x0839 /* CX8300/CX8400/DX8400 MFP scanner */
#define USB_PRODUCT_EPSON_SX100 0x0841 /* SX100/NX100 MFP scanner */
#define USB_PRODUCT_EPSON_NX300 0x0848 /* NX300 MFP scanner */
#define USB_PRODUCT_EPSON_SX200 0x0849 /* SX200/SX205 MFP scanner */
#define USB_PRODUCT_EPSON_SX400 0x084a /* SX400/NX400/TX400 MFP scanner */
/* e-TEK Labs products */
#define USB_PRODUCT_ETEK_1COM 0x8007 /* Serial */
/* Extended Systems products */
#define USB_PRODUCT_EXTENDED_XTNDACCESS 0x0100 /* XTNDAccess IrDA */
/* FEIYA products */
#define USB_PRODUCT_FEIYA_5IN1 0x1132 /* 5-in-1 Card Reader */
/* Fiberline */
#define USB_PRODUCT_FIBERLINE_WL430U 0x6003 /* WL-430U */
/* Fossil, Inc products */
#define USB_PRODUCT_FOSSIL_WRISTPDA 0x0002 /* Wrist PDA */
/* Freecom products */
#define USB_PRODUCT_FREECOM_DVD 0xfc01 /* DVD drive */
/* Fujitsu Siemens Computers products */
#define USB_PRODUCT_FSC_E5400 0x1009 /* PrismGT USB 2.0 WLAN */
/* Future Technology Devices products */
#define USB_PRODUCT_FTDI_SERIAL_8U100AX 0x8372 /* 8U100AX Serial */
#define USB_PRODUCT_FTDI_SERIAL_8U232AM 0x6001 /* 8U232AM Serial */
#define USB_PRODUCT_FTDI_SERIAL_2232C 0x6010 /* FT2232C Dual port Serial */
/* Gude Analog- und Digitalsysteme products also uses FTDI's id: */
#define USB_PRODUCT_FTDI_TACTRIX_OPENPORT_13M 0xcc48 /* OpenPort 1.3 Mitsubishi */
#define USB_PRODUCT_FTDI_TACTRIX_OPENPORT_13S 0xcc49 /* OpenPort 1.3 Subaru */
#define USB_PRODUCT_FTDI_TACTRIX_OPENPORT_13U 0xcc4a /* OpenPort 1.3 Universal */
#define USB_PRODUCT_FTDI_EISCOU 0xe888 /* Expert ISDN Control USB */
#define USB_PRODUCT_FTDI_UOPTBR 0xe889 /* USB-RS232 OptoBridge */
#define USB_PRODUCT_FTDI_EMCU2D 0xe88a /* Expert mouseCLOCK USB II */
#define USB_PRODUCT_FTDI_PCMSFU 0xe88b /* Precision Clock MSF USB */
#define USB_PRODUCT_FTDI_EMCU2H 0xe88c /* Expert mouseCLOCK USB II HBG */
#define USB_PRODUCT_FTDI_MAXSTREAM 0xee18 /* Maxstream PKG-U */
#define USB_PRODUCT_FTDI_USBSERIAL 0xfa00 /* Matrix Orbital USB Serial */
#define USB_PRODUCT_FTDI_MX2_3 0xfa01 /* Matrix Orbital MX2 or MX3 */
#define USB_PRODUCT_FTDI_MX4_5 0xfa02 /* Matrix Orbital MX4 or MX5 */
#define USB_PRODUCT_FTDI_LK202 0xfa03 /* Matrix Orbital VK/LK202 Family */
#define USB_PRODUCT_FTDI_LK204 0xfa04 /* Matrix Orbital VK/LK204 Family */
#define USB_PRODUCT_FTDI_CFA_632 0xfc08 /* Crystalfontz CFA-632 USB LCD */
#define USB_PRODUCT_FTDI_CFA_634 0xfc09 /* Crystalfontz CFA-634 USB LCD */
#define USB_PRODUCT_FTDI_CFA_633 0xfc0b /* Crystalfontz CFA-633 USB LCD */
#define USB_PRODUCT_FTDI_CFA_631 0xfc0c /* Crystalfontz CFA-631 USB LCD */
#define USB_PRODUCT_FTDI_CFA_635 0xfc0d /* Crystalfontz CFA-635 USB LCD */
#define USB_PRODUCT_FTDI_SEMC_DSS20 0xfc82 /* SEMC DSS-20 SyncStation */
/* Fuji photo products */
#define USB_PRODUCT_FUJIPHOTO_MASS0100 0x0100 /* Mass Storage */
/* Fujitsu protducts */
#define USB_PRODUCT_FUJITSU_AH_F401U 0x105b /* AH-F401U Air H device */
/* Garmin products */
#define USB_PRODUCT_GARMIN_IQUE_3600 0x0004 /* iQue 3600 */
/* General Instruments (Motorola) products */
#define USB_PRODUCT_GENERALINSTMNTS_SB5100 0x5100 /* SURFboard SB5100 Cable modem */
/* Genesys Logic products */
#define USB_PRODUCT_GENESYS_GL620USB 0x0501 /* GL620USB Host-Host interface */
#define USB_PRODUCT_GENESYS_GL650 0x0604 /* GL650 Hub */
#define USB_PRODUCT_GENESYS_GL641USB 0x0700 /* GL641USB CompactFlash Card Reader */
#define USB_PRODUCT_GENESYS_GL641USB2IDE_2 0x0701 /* GL641USB USB-IDE Bridge No 2 */
#define USB_PRODUCT_GENESYS_GL641USB2IDE 0x0702 /* GL641USB USB-IDE Bridge */
#define USB_PRODUCT_GENESYS_GL641USB_2 0x0760 /* GL641USB 6-in-1 Card Reader */
/* GIGABYTE products */
#define USB_PRODUCT_GIGABYTE_GN54G 0x8001 /* GN-54G */
#define USB_PRODUCT_GIGABYTE_GNBR402W 0x8002 /* GN-BR402W */
#define USB_PRODUCT_GIGABYTE_GNWLBM101 0x8003 /* GN-WLBM101 */
#define USB_PRODUCT_GIGABYTE_GNWBKG 0x8007 /* GN-WBKG */
#define USB_PRODUCT_GIGABYTE_GNWB01GS 0x8008 /* GN-WB01GS */
#define USB_PRODUCT_GIGABYTE_GNWI05GS 0x800a /* GN-WI05GS */
/* Gigaset products */
#define USB_PRODUCT_GIGASET_WLAN 0x0701 /* WLAN */
#define USB_PRODUCT_GIGASET_SMCWUSBTG 0x0710 /* SMCWUSBT-G */
#define USB_PRODUCT_GIGASET_SMCWUSBTG_NF 0x0711 /* SMCWUSBT-G (no firmware) */
#define USB_PRODUCT_GIGASET_AR5523 0x0712 /* AR5523 */
#define USB_PRODUCT_GIGASET_AR5523_NF 0x0713 /* AR5523 (no firmware) */
#define USB_PRODUCT_GIGASET_RT2573 0x0722 /* RT2573 */
/* Global Sun Technology product */
#define USB_PRODUCT_GLOBALSUN_AR5523_1 0x7801 /* AR5523 */
#define USB_PRODUCT_GLOBALSUN_AR5523_1_NF 0x7802 /* AR5523 (no firmware) */
#define USB_PRODUCT_GLOBALSUN_AR5523_2 0x7811 /* AR5523 */
#define USB_PRODUCT_GLOBALSUN_AR5523_2_NF 0x7812 /* AR5523 (no firmware) */
/* Globespan products */
#define USB_PRODUCT_GLOBESPAN_PRISM_GT_1 0x2000 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_GLOBESPAN_PRISM_GT_2 0x2002 /* PrismGT USB 2.0 WLAN */
/* G.Mate, Inc products */
#define USB_PRODUCT_GMATE_YP3X00 0x1001 /* YP3X00 PDA */
/* GoHubs products */
#define USB_PRODUCT_GOHUBS_GOCOM232 0x1001 /* GoCOM232 Serial */
/* Good Way Technology products */
#define USB_PRODUCT_GOODWAY_GWUSB2E 0x6200 /* GWUSB2E */
#define USB_PRODUCT_GOODWAY_RT2573 0xc019 /* RT2573 */
/* Gravis products */
#define USB_PRODUCT_GRAVIS_GAMEPADPRO 0x4001 /* GamePad Pro */
/* GREENHOUSE products */
#define USB_PRODUCT_GREENHOUSE_KANA21 0x0001 /* CF-writer with MP3 */
/* Griffin Technology */
#define USB_PRODUCT_GRIFFIN_IMATE 0x0405 /* iMate, ADB Adapter */
/* Guillemot Corporation */
#define USB_PRODUCT_GUILLEMOT_DALEADER 0xa300 /* DA Leader */
#define USB_PRODUCT_GUILLEMOT_HWGUSB254 0xe000 /* HWGUSB2-54 WLAN */
#define USB_PRODUCT_GUILLEMOT_HWGUSB254LB 0xe010 /* HWGUSB2-54-LB */
#define USB_PRODUCT_GUILLEMOT_HWGUSB254V2AP 0xe020 /* HWGUSB2-54V2-AP */
/* Hagiwara products */
#define USB_PRODUCT_HAGIWARA_FGSM 0x0002 /* FlashGate SmartMedia Card Reader */
#define USB_PRODUCT_HAGIWARA_FGCF 0x0003 /* FlashGate CompactFlash Card Reader */
#define USB_PRODUCT_HAGIWARA_FG 0x0005 /* FlashGate */
/* HAL Corporation products */
#define USB_PRODUCT_HAL_IMR001 0x0011 /* Crossam2+USB IR commander */
/* Handspring, Inc. */
#define USB_PRODUCT_HANDSPRING_VISOR 0x0100 /* Handspring Visor */
#define USB_PRODUCT_HANDSPRING_TREO 0x0200 /* Handspring Treo */
#define USB_PRODUCT_HANDSPRING_TREO600 0x0300 /* Handspring Treo 600 */
/* Hauppauge Computer Works */
#define USB_PRODUCT_HAUPPAUGE_WINTV_USB_FM 0x4d12 /* WinTV USB FM */
/* Hawking Technologies products */
#define USB_PRODUCT_HAWKING_UF100 0x400c /* 10/100 USB Ethernet */
/* Hitachi, Ltd. products */
#define USB_PRODUCT_HITACHI_DVDCAM_DZ_MV100A 0x0004 /* DVD-CAM DZ-MV100A Camcorder */
#define USB_PRODUCT_HITACHI_DVDCAM_USB 0x001e /* DVDCAM USB HS Interface */
/* HP products */
#define USB_PRODUCT_HP_895C 0x0004 /* DeskJet 895C */
#define USB_PRODUCT_HP_4100C 0x0101 /* Scanjet 4100C */
#define USB_PRODUCT_HP_S20 0x0102 /* Photosmart S20 */
#define USB_PRODUCT_HP_880C 0x0104 /* DeskJet 880C */
#define USB_PRODUCT_HP_4200C 0x0105 /* ScanJet 4200C */
#define USB_PRODUCT_HP_CDWRITERPLUS 0x0107 /* CD-Writer Plus */
#define USB_PRODUCT_HP_KBDHUB 0x010c /* Multimedia Keyboard Hub */
#define USB_PRODUCT_HP_G55XI 0x0111 /* OfficeJet G55xi */
#define USB_PRODUCT_HP_HN210W 0x011c /* HN210W 802.11b WLAN */
#define USB_PRODUCT_HP_49GPLUS 0x0121 /* 49g+ graphing calculator */
#define USB_PRODUCT_HP_6200C 0x0201 /* ScanJet 6200C */
#define USB_PRODUCT_HP_S20b 0x0202 /* PhotoSmart S20 */
#define USB_PRODUCT_HP_815C 0x0204 /* DeskJet 815C */
#define USB_PRODUCT_HP_3300C 0x0205 /* ScanJet 3300C */
#define USB_PRODUCT_HP_CDW8200 0x0207 /* CD-Writer Plus 8200e */
#define USB_PRODUCT_HP_MMKEYB 0x020c /* Multimedia keyboard */
#define USB_PRODUCT_HP_1220C 0x0212 /* DeskJet 1220C */
#define USB_PRODUCT_HP_810C 0x0304 /* DeskJet 810C/812C */
#define USB_PRODUCT_HP_4300C 0x0305 /* Scanjet 4300C */
#define USB_PRODUCT_HP_CDW4E 0x0307 /* CD-Writer+ CD-4e */
#define USB_PRODUCT_HP_G85XI 0x0311 /* OfficeJet G85xi */
#define USB_PRODUCT_HP_1200 0x0317 /* LaserJet 1200 */
#define USB_PRODUCT_HP_5200C 0x0401 /* Scanjet 5200C */
#define USB_PRODUCT_HP_830C 0x0404 /* DeskJet 830C */
#define USB_PRODUCT_HP_3400CSE 0x0405 /* ScanJet 3400cse */
#define USB_PRODUCT_HP_6300C 0x0601 /* Scanjet 6300C */
#define USB_PRODUCT_HP_840C 0x0604 /* DeskJet 840c */
#define USB_PRODUCT_HP_2200C 0x0605 /* ScanJet 2200C */
#define USB_PRODUCT_HP_5300C 0x0701 /* Scanjet 5300C */
#define USB_PRODUCT_HP_4400C 0x0705 /* Scanjet 4400C */
#define USB_PRODUCT_HP_4470C 0x0805 /* Scanjet 4470C */
#define USB_PRODUCT_HP_82x0C 0x0b01 /* Scanjet 82x0C */
#define USB_PRODUCT_HP_2300D 0x0b17 /* Laserjet 2300d */
#define USB_PRODUCT_HP_970CSE 0x1004 /* Deskjet 970Cse */
#define USB_PRODUCT_HP_5400C 0x1005 /* Scanjet 5400C */
#define USB_PRODUCT_HP_2215 0x1016 /* iPAQ 22xx/Jornada 548 */
#define USB_PRODUCT_HP_568J 0x1116 /* Jornada 568 */
#define USB_PRODUCT_HP_930C 0x1204 /* DeskJet 930c */
#define USB_PRODUCT_HP_P2000U 0x1801 /* Inkjet P-2000U */
#define USB_PRODUCT_HP_640C 0x2004 /* DeskJet 640c */
#define USB_PRODUCT_HP_4670V 0x3005 /* ScanJet 4670v */
#define USB_PRODUCT_HP_P1100 0x3102 /* Photosmart P1100 */
#define USB_PRODUCT_HP_OJ4215 0x3d11 /* OfficeJet 4215 */
#define USB_PRODUCT_HP_HN210E 0x811c /* Ethernet HN210E */
#define USB_PRODUCT_HP2_C500 0x6002 /* PhotoSmart C500 */
#define USB_PRODUCT_HP_HS2300 0x1e1d /* hs2300 HSDPA (aka MC8775) */
/* HTC products */
#define USB_PRODUCT_HTC_WINMOBILE 0x00ce /* HTC USB Sync */
#define USB_PRODUCT_HTC_PPC6700MODEM 0x00cf /* PPC6700 Modem */
#define USB_PRODUCT_HTC_SMARTPHONE 0x0a51 /* SmartPhone USB Sync */
/* HUAWEI products */
#define USB_PRODUCT_HUAWEI_MOBILE 0x1001 /* Huawei Mobile */
#define USB_PRODUCT_HUAWEI_E220 0x1003 /* Huawei HSDPA modem */
/* HUAWEI 3com products */
#define USB_PRODUCT_HUAWEI3COM_WUB320G 0x0009 /* Aolynk WUB320g */
/* IBM Corporation */
#define USB_PRODUCT_IBM_USBCDROMDRIVE 0x4427 /* USB CD-ROM Drive */
/* Imagination Technologies products */
#define USB_PRODUCT_IMAGINATION_DBX1 0x2107 /* DBX1 DSP core */
/* Inside Out Networks products */
#define USB_PRODUCT_INSIDEOUT_EDGEPORT4 0x0001 /* EdgePort/4 serial ports */
/* In-System products */
#define USB_PRODUCT_INSYSTEM_F5U002 0x0002 /* Parallel printer */
#define USB_PRODUCT_INSYSTEM_ATAPI 0x0031 /* ATAPI Adapter */
#define USB_PRODUCT_INSYSTEM_ISD110 0x0200 /* IDE Adapter ISD110 */
#define USB_PRODUCT_INSYSTEM_ISD105 0x0202 /* IDE Adapter ISD105 */
#define USB_PRODUCT_INSYSTEM_USBCABLE 0x081a /* USB cable */
#define USB_PRODUCT_INSYSTEM_STORAGE_V2 0x5701 /* USB Storage Adapter V2 */
/* Intel products */
#define USB_PRODUCT_INTEL_EASYPC_CAMERA 0x0110 /* Easy PC Camera */
#define USB_PRODUCT_INTEL_TESTBOARD 0x9890 /* 82930 test board */
/* Intersil products */
#define USB_PRODUCT_INTERSIL_PRISM_GT 0x1000 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_INTERSIL_PRISM_2X 0x3642 /* Prism2.x or Atmel WLAN */
/* Interpid Control Systems products */
#define USB_PRODUCT_INTREPIDCS_VALUECAN 0x0601 /* ValueCAN CAN bus interface */
#define USB_PRODUCT_INTREPIDCS_NEOVI 0x0701 /* NeoVI Blue vehicle bus interface */
/* I/O DATA products */
#define USB_PRODUCT_IODATA_IU_CD2 0x0204 /* DVD Multi-plus unit iU-CD2 */
#define USB_PRODUCT_IODATA_DVR_UEH8 0x0206 /* DVD Multi-plus unit DVR-UEH8 */
#define USB_PRODUCT_IODATA_USBSSMRW 0x0314 /* USB-SSMRW SD-card */
#define USB_PRODUCT_IODATA_USBSDRW 0x031e /* USB-SDRW SD-card */
#define USB_PRODUCT_IODATA_USBETT 0x0901 /* USB ETT */
#define USB_PRODUCT_IODATA_USBETTX 0x0904 /* USB ETTX */
#define USB_PRODUCT_IODATA_USBETTXS 0x0913 /* USB ETTX */
#define USB_PRODUCT_IODATA_USBWNB11A 0x0919 /* USB WN-B11 */
#define USB_PRODUCT_IODATA_USBWNB11 0x0922 /* USB Airport WN-B11 */
#define USB_PRODUCT_IODATA_ETGUS2 0x0930 /* ETG-US2 */
#define USB_PRODUCT_IODATA_USBRSAQ 0x0a03 /* Serial USB-RSAQ1 */
#define USB_PRODUCT_IODATA2_USB2SC 0x0a09 /* USB2.0-SCSI Bridge USB2-SC */
/* Iomega products */
#define USB_PRODUCT_IOMEGA_ZIP100 0x0001 /* Zip 100 */
#define USB_PRODUCT_IOMEGA_ZIP250 0x0030 /* Zip 250 */
/* Ituner networks products */
#define USB_PRODUCT_ITUNERNET_USBLCD2X20 0x0002 /* USB-LCD 2x20 */
/* Jablotron products */
#define USB_PRODUCT_JABLOTRON_PC60B 0x0001 /* PC-60B */
/* Jaton products */
#define USB_PRODUCT_JATON_EDA 0x5704 /* Ethernet */
/* JVC products */
#define USB_PRODUCT_JVC_GR_DX95 0x000a /* GR-DX95 */
#define USB_PRODUCT_JVC_MP_PRX1 0x3008 /* MP-PRX1 Ethernet */
/* JRC products */
#define USB_PRODUCT_JRC_AH_J3001V_J3002V 0x0001 /* AirH PHONE AH-J3001V/J3002V */
/* Kawatsu products */
#define USB_PRODUCT_KAWATSU_MH4000P 0x0003 /* MiniHub 4000P */
/* Keisokugiken Corp. products */
#define USB_PRODUCT_KEISOKUGIKEN_USBDAQ 0x0068 /* HKS-0200 USBDAQ */
/* Kensington products */
#define USB_PRODUCT_KENSINGTON_ORBIT 0x1003 /* Orbit USB/PS2 trackball */
#define USB_PRODUCT_KENSINGTON_TURBOBALL 0x1005 /* TurboBall */
/* Keyspan products */
#define USB_PRODUCT_KEYSPAN_USA28_NF 0x0101 /* USA-28 serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA28X_NF 0x0102 /* USA-28X serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19_NF 0x0103 /* USA-19 serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA18_NF 0x0104 /* USA-18 serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA18X_NF 0x0105 /* USA-18X serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19W_NF 0x0106 /* USA-19W serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19 0x0107 /* USA-19 serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA19W 0x0108 /* USA-19W serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA49W_NF 0x0109 /* USA-49W serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA49W 0x010a /* USA-49W serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA19QI_NF 0x010b /* USA-19QI serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19QI 0x010c /* USA-19QI serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA19Q_NF 0x010d /* USA-19Q serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19Q 0x010e /* USA-19Q serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA28 0x010f /* USA-28 serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA28XXB 0x0110 /* USA-28X/XB serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA18 0x0111 /* USA-18 serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA18X 0x0112 /* USA-18X serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA28XB_NF 0x0113 /* USA-28XB serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA28XA_NF 0x0114 /* USA-28XB serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA28XA 0x0115 /* USA-28XA serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA18XA_NF 0x0116 /* USA-18XA serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA18XA 0x0117 /* USA-18XA serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA19QW_NF 0x0118 /* USA-19WQ serial Adapter (no firmware) */
#define USB_PRODUCT_KEYSPAN_USA19QW 0x0119 /* USA-19WQ serial Adapter */
#define USB_PRODUCT_KEYSPAN_USA19HA 0x0121 /* USA-19HS serial Adapter */
#define USB_PRODUCT_KEYSPAN_UIA10 0x0201 /* UIA-10 remote control */
#define USB_PRODUCT_KEYSPAN_UIA11 0x0202 /* UIA-11 remote control */
/* Kingston products */
#define USB_PRODUCT_KINGSTON_XX1 0x0008 /* Ethernet */
#define USB_PRODUCT_KINGSTON_KNU101TX 0x000a /* KNU101TX USB Ethernet */
/* Kawasaki products */
#define USB_PRODUCT_KLSI_DUH3E10BT 0x0008 /* USB Ethernet */
#define USB_PRODUCT_KLSI_DUH3E10BTN 0x0009 /* USB Ethernet */
/* Kodak products */
#define USB_PRODUCT_KODAK_DC220 0x0100 /* Digital Science DC220 */
#define USB_PRODUCT_KODAK_DC260 0x0110 /* Digital Science DC260 */
#define USB_PRODUCT_KODAK_DC265 0x0111 /* Digital Science DC265 */
#define USB_PRODUCT_KODAK_DC290 0x0112 /* Digital Science DC290 */
#define USB_PRODUCT_KODAK_DC240 0x0120 /* Digital Science DC240 */
#define USB_PRODUCT_KODAK_DC280 0x0130 /* Digital Science DC280 */
/* Konica Corp. Products */
#define USB_PRODUCT_KONICA_CAMERA 0x0720 /* Digital Color Camera */
/* KYE products */
#define USB_PRODUCT_KYE_NICHE 0x0001 /* Niche mouse */
#define USB_PRODUCT_KYE_NETSCROLL 0x0003 /* Genius NetScroll mouse */
#define USB_PRODUCT_KYE_FLIGHT2000 0x1004 /* Flight 2000 joystick */
#define USB_PRODUCT_KYE_VIVIDPRO 0x2001 /* ColorPage Vivid-Pro scanner */
/* Kyocera products */
#define USB_PRODUCT_KYOCERA_FINECAM_S3X 0x0100 /* Finecam S3x */
#define USB_PRODUCT_KYOCERA_FINECAM_S4 0x0101 /* Finecam S4 */
#define USB_PRODUCT_KYOCERA_FINECAM_S5 0x0103 /* Finecam S5 */
#define USB_PRODUCT_KYOCERA_FINECAM_L3 0x0105 /* Finecam L3 */
#define USB_PRODUCT_KYOCERA_AHK3001V 0x0203 /* AH-K3001V */
#define USB_PRODUCT_KYOCERA2_CDMA_MSM_K 0x17da /* Qualcomm Kyocera CDMA Technologies MSM */
/* LaCie products */
#define USB_PRODUCT_LACIE_HD 0xa601 /* Hard Disk */
#define USB_PRODUCT_LACIE_CDRW 0xa602 /* CD R/W */
/* Lexar products */
#define USB_PRODUCT_LEXAR_JUMPSHOT 0x0001 /* jumpSHOT CompactFlash Reader */
#define USB_PRODUCT_LEXAR_CF_READER 0xb002 /* USB CF Reader */
/* Lexmark products */
#define USB_PRODUCT_LEXMARK_S2450 0x0009 /* Optra S 2450 */
/* Linksys products */
#define USB_PRODUCT_LINKSYS_MAUSB2 0x0105 /* Camedia MAUSB-2 */
#define USB_PRODUCT_LINKSYS_USB10TX1 0x200c /* USB10TX */
#define USB_PRODUCT_LINKSYS_USB10T 0x2202 /* USB10T Ethernet */
#define USB_PRODUCT_LINKSYS_USB100TX 0x2203 /* USB100TX Ethernet */
#define USB_PRODUCT_LINKSYS_USB100H1 0x2204 /* USB100H1 Ethernet/HPNA */
#define USB_PRODUCT_LINKSYS_USB10TA 0x2206 /* USB10TA Ethernet */
#define USB_PRODUCT_LINKSYS_USB10TX2 0x400b /* USB10TX */
#define USB_PRODUCT_LINKSYS2_WUSB11 0x2219 /* WUSB11 Wireless Adapter */
#define USB_PRODUCT_LINKSYS2_USB200M 0x2226 /* USB 2.0 10/100 Ethernet */
#define USB_PRODUCT_LINKSYS3_WUSB11v28 0x2233 /* WUSB11 v2.8 Wireless Adapter */
#define USB_PRODUCT_LINKSYS4_USB1000 0x0039 /* USB1000 */
/* Logitech products */
#define USB_PRODUCT_LOGITECH_M2452 0x0203 /* M2452 keyboard */
#define USB_PRODUCT_LOGITECH_M4848 0x0301 /* M4848 mouse */
#define USB_PRODUCT_LOGITECH_PAGESCAN 0x040f /* PageScan */
#define USB_PRODUCT_LOGITECH_QUICKCAMWEB 0x0801 /* QuickCam Web */
#define USB_PRODUCT_LOGITECH_QUICKCAMPRO 0x0810 /* QuickCam Pro */
#define USB_PRODUCT_LOGITECH_QUICKCAMEXP 0x0840 /* QuickCam Express */
#define USB_PRODUCT_LOGITECH_QUICKCAM 0x0850 /* QuickCam */
#define USB_PRODUCT_LOGITECH_N43 0xc000 /* N43 */
#define USB_PRODUCT_LOGITECH_N48 0xc001 /* N48 mouse */
#define USB_PRODUCT_LOGITECH_MBA47 0xc002 /* M-BA47 mouse */
#define USB_PRODUCT_LOGITECH_WMMOUSE 0xc004 /* WingMan Gaming Mouse */
#define USB_PRODUCT_LOGITECH_BD58 0xc00c /* BD58 mouse */
#define USB_PRODUCT_LOGITECH_UN58A 0xc030 /* iFeel Mouse */
#define USB_PRODUCT_LOGITECH_UN53B 0xc032 /* iFeel MouseMan */
#define USB_PRODUCT_LOGITECH_WMPAD 0xc208 /* WingMan GamePad Extreme */
#define USB_PRODUCT_LOGITECH_WMRPAD 0xc20a /* WingMan RumblePad */
#define USB_PRODUCT_LOGITECH_WMJOY 0xc281 /* WingMan Force joystick */
#define USB_PRODUCT_LOGITECH_BB13 0xc401 /* USB-PS/2 Trackball */
#define USB_PRODUCT_LOGITECH_RK53 0xc501 /* Cordless mouse */
#define USB_PRODUCT_LOGITECH_RB6 0xc503 /* Cordless keyboard */
#define USB_PRODUCT_LOGITECH_MX700 0xc506 /* Cordless optical mouse */
#define USB_PRODUCT_LOGITECH_QUICKCAMPRO2 0xd001 /* QuickCam Pro */
/* Logitec Corp. products */
#define USB_PRODUCT_LOGITEC_LDR_H443SU2 0x0033 /* DVD Multi-plus unit LDR-H443SU2 */
#define USB_PRODUCT_LOGITEC_LDR_H443U2 0x00b3 /* DVD Multi-plus unit LDR-H443U2 */
/* Lucent products */
#define USB_PRODUCT_LUCENT_EVALKIT 0x1001 /* USS-720 evaluation kit */
/* Luwen products */
#define USB_PRODUCT_LUWEN_EASYDISK 0x0005 /* EasyDisc */
/* Macally products */
#define USB_PRODUCT_MACALLY_MOUSE1 0x0101 /* mouse */
/* MCT Corp. */
#define USB_PRODUCT_MCT_HUB0100 0x0100 /* Hub */
#define USB_PRODUCT_MCT_DU_H3SP_USB232 0x0200 /* D-Link DU-H3SP USB BAY Hub */
#define USB_PRODUCT_MCT_USB232 0x0210 /* USB-232 Interface */
#define USB_PRODUCT_MCT_SITECOM_USB232 0x0230 /* Sitecom USB-232 Products */
/* Meizu Electronics */
#define USB_PRODUCT_MEIZU_M6_SL 0x0140 /* MiniPlayer M6 (SL) */
/* Melco, Inc products */
#define USB_PRODUCT_MELCO_LUATX1 0x0001 /* LUA-TX Ethernet */
#define USB_PRODUCT_MELCO_LUATX5 0x0005 /* LUA-TX Ethernet */
#define USB_PRODUCT_MELCO_LUA2TX5 0x0009 /* LUA2-TX Ethernet */
#define USB_PRODUCT_MELCO_LUAKTX 0x0012 /* LUA-KTX Ethernet */
#define USB_PRODUCT_MELCO_DUBPXXG 0x001c /* USB-IDE Bridge: DUB-PxxG */
#define USB_PRODUCT_MELCO_LUAU2KTX 0x003d /* LUA-U2-KTX Ethernet */
#define USB_PRODUCT_MELCO_KG54YB 0x005e /* WLI-U2-KG54-YB WLAN */
#define USB_PRODUCT_MELCO_KG54 0x0066 /* WLI-U2-KG54 WLAN */
#define USB_PRODUCT_MELCO_KG54AI 0x0067 /* WLI-U2-KG54-AI WLAN */
#define USB_PRODUCT_MELCO_NINWIFI 0x008b /* Nintendo Wi-Fi */
#define USB_PRODUCT_MELCO_PCOPRS1 0x00b3 /* PC-OP-RS1 RemoteStation */
#define USB_PRODUCT_MELCO_SG54HP 0x00d8 /* WLI-U2-SG54HP */
#define USB_PRODUCT_MELCO_G54HP 0x00d9 /* WLI-U2-G54HP */
#define USB_PRODUCT_MELCO_KG54L 0x00da /* WLI-U2-KG54L */
/* Merlin products */
#define USB_PRODUCT_MERLIN_V620 0x1110 /* Merlin V620 */
/* MetaGeek products */
#define USB_PRODUCT_METAGEEK_WISPY1B 0x083e /* MetaGeek Wi-Spy */
#define USB_PRODUCT_METAGEEK_WISPY24X 0x083f /* MetaGeek Wi-Spy 2.4x */
/* Metricom products */
#define USB_PRODUCT_METRICOM_RICOCHET_GS 0x0001 /* Ricochet GS */
/* MGE UPS Systems */
#define USB_PRODUCT_MGE_UPS1 0x0001 /* MGE UPS SYSTEMS PROTECTIONCENTER 1 */
#define USB_PRODUCT_MGE_UPS2 0xffff /* MGE UPS SYSTEMS PROTECTIONCENTER 2 */
/* Micro Star International products */
#define USB_PRODUCT_MSI_BT_DONGLE 0x1967 /* Bluetooth USB dongle */
#define USB_PRODUCT_MSI_UB11B 0x6823 /* UB11B */
#define USB_PRODUCT_MSI_RT2570 0x6861 /* RT2570 */
#define USB_PRODUCT_MSI_RT2570_2 0x6865 /* RT2570 */
#define USB_PRODUCT_MSI_RT2570_3 0x6869 /* RT2570 */
#define USB_PRODUCT_MSI_RT2573_1 0x6874 /* RT2573 */
#define USB_PRODUCT_MSI_RT2573_2 0x6877 /* RT2573 */
#define USB_PRODUCT_MSI_RT2573_3 0xa861 /* RT2573 */
#define USB_PRODUCT_MSI_RT2573_4 0xa874 /* RT2573 */
/* Microsoft products */
#define USB_PRODUCT_MICROSOFT_SIDEPREC 0x0008 /* SideWinder Precision Pro */
#define USB_PRODUCT_MICROSOFT_INTELLIMOUSE 0x0009 /* IntelliMouse */
#define USB_PRODUCT_MICROSOFT_NATURALKBD 0x000b /* Natural Keyboard Elite */
#define USB_PRODUCT_MICROSOFT_DDS80 0x0014 /* Digital Sound System 80 */
#define USB_PRODUCT_MICROSOFT_SIDEWINDER 0x001a /* Sidewinder Precision Racing Wheel */
#define USB_PRODUCT_MICROSOFT_INETPRO 0x001c /* Internet Keyboard Pro */
#define USB_PRODUCT_MICROSOFT_TBEXPLORER 0x0024 /* Trackball Explorer */
#define USB_PRODUCT_MICROSOFT_INTELLIEYE 0x0025 /* IntelliEye mouse */
#define USB_PRODUCT_MICROSOFT_INETPRO2 0x002b /* Internet Keyboard Pro */
#define USB_PRODUCT_MICROSOFT_MN510 0x006e /* MN510 Wireless */
#define USB_PRODUCT_MICROSOFT_MN110 0x007a /* 10/100 USB NIC */
#define USB_PRODUCT_MICROSOFT_WLINTELLIMOUSE 0x008c /* Wireless Optical IntelliMouse */
#define USB_PRODUCT_MICROSOFT_WLNOTEBOOK 0x00b9 /* Wireless Optical Mouse (Model 1023) */
#define USB_PRODUCT_MICROSOFT_COMFORT3000 0x00d1 /* Comfort Optical Mouse 3000 (Model 1043) */
#define USB_PRODUCT_MICROSOFT_WLNOTEBOOK2 0x00e1 /* Wireless Optical Mouse 3000 (Model 1056) */
#define USB_PRODUCT_MICROSOFT_WLNOTEBOOK3 0x00d2 /* Wireless Optical Mouse 3000 (Model 1049) */
#define USB_PRODUCT_MICROSOFT_WLUSBMOUSE 0x00b9 /* Wireless USB Mouse */
#define USB_PRODUCT_MICROSOFT_XBOX360 0x0292 /* XBOX 360 WLAN */
/* Microtech products */
#define USB_PRODUCT_MICROTECH_SCSIDB25 0x0004 /* USB-SCSI-DB25 */
#define USB_PRODUCT_MICROTECH_SCSIHD50 0x0005 /* USB-SCSI-HD50 */
#define USB_PRODUCT_MICROTECH_DPCM 0x0006 /* USB CameraMate */
#define USB_PRODUCT_MICROTECH_FREECOM 0xfc01 /* Freecom USB-IDE */
/* Microtek products */
#define USB_PRODUCT_MICROTEK_336CX 0x0094 /* Phantom 336CX - C3 scanner */
#define USB_PRODUCT_MICROTEK_X6U 0x0099 /* ScanMaker X6 - X6U */
#define USB_PRODUCT_MICROTEK_C6 0x009a /* Phantom C6 scanner */
#define USB_PRODUCT_MICROTEK_336CX2 0x00a0 /* Phantom 336CX - C3 scanner */
#define USB_PRODUCT_MICROTEK_V6USL 0x00a3 /* ScanMaker V6USL */
#define USB_PRODUCT_MICROTEK_V6USL2 0x80a3 /* ScanMaker V6USL */
#define USB_PRODUCT_MICROTEK_V6UL 0x80ac /* ScanMaker V6UL */
/* Microtune, Inc. products */
#define USB_PRODUCT_MICROTUNE_BT_DONGLE 0x1000 /* Bluetooth USB dongle */
/* Midiman products */
#define USB_PRODUCT_MIDIMAN_MIDISPORT2X2 0x1001 /* Midisport 2x2 */
/* MindsAtWork products */
#define USB_PRODUCT_MINDSATWORK_WALLET 0x0001 /* Digital Wallet */
/* Minolta Co., Ltd. */
#define USB_PRODUCT_MINOLTA_2300 0x4001 /* Dimage 2300 */
#define USB_PRODUCT_MINOLTA_S304 0x4007 /* Dimage S304 */
#define USB_PRODUCT_MINOLTA_X 0x4009 /* Dimage X */
#define USB_PRODUCT_MINOLTA_5400 0x400e /* Dimage 5400 */
#define USB_PRODUCT_MINOLTA_F300 0x4011 /* Dimage F300 */
#define USB_PRODUCT_MINOLTA_E223 0x4017 /* Dimage E223 */
/* Mitsumi products */
#define USB_PRODUCT_MITSUMI_CDRRW 0x0000 /* CD-R/RW Drive */
#define USB_PRODUCT_MITSUMI_BT_DONGLE 0x641f /* Bluetooth USB dongle */
#define USB_PRODUCT_MITSUMI_FDD 0x6901 /* USB FDD */
/* Mobility products */
#define USB_PRODUCT_MOBILITY_EA 0x0204 /* Ethernet */
#define USB_PRODUCT_MOBILITY_EASIDOCK 0x0304 /* EasiDock Ethernet */
/* MosChip products */
#define USB_PRODUCT_MOSCHIP_MCS7703 0x7703 /* MCS7703 Serial Port Adapter */
#define USB_PRODUCT_MOSCHIP_MCS7830 0x7830 /* MCS7830 Ethernet */
/* Motorola products */
#define USB_PRODUCT_MOTOROLA_MC141555 0x1555 /* MC141555 hub controller */
#define USB_PRODUCT_MOTOROLA_SB4100 0x4100 /* SB4100 USB Cable Modem */
#define USB_PRODUCT_MOTOROLA2_A41XV32X 0x2a22 /* A41x/V32x Mobile Phones */
#define USB_PRODUCT_MOTOROLA2_E398 0x4810 /* E398 Mobile Phone */
#define USB_PRODUCT_MOTOROLA2_USBLAN 0x600c /* USBLAN */
#define USB_PRODUCT_MOTOROLA2_USBLAN2 0x6027 /* USBLAN */
/* MultiTech products */
#define USB_PRODUCT_MULTITECH_ATLAS 0xf101 /* MT5634ZBA-USB modem */
/* Mustek products */
#define USB_PRODUCT_MUSTEK_1200CU 0x0001 /* 1200 CU scanner */
#define USB_PRODUCT_MUSTEK_600CU 0x0002 /* 600 CU scanner */
#define USB_PRODUCT_MUSTEK_1200USB 0x0003 /* 1200 USB scanner */
#define USB_PRODUCT_MUSTEK_1200UB 0x0006 /* 1200 UB scanner */
#define USB_PRODUCT_MUSTEK_1200USBPLUS 0x0007 /* 1200 USB Plus scanner */
#define USB_PRODUCT_MUSTEK_1200CUPLUS 0x0008 /* 1200 CU Plus scanner */
#define USB_PRODUCT_MUSTEK_BEARPAW1200F 0x0010 /* BearPaw 1200F scanner */
#define USB_PRODUCT_MUSTEK_BEARPAW1200TA 0x021e /* BearPaw 1200TA scanner */
#define USB_PRODUCT_MUSTEK_600USB 0x0873 /* 600 USB scanner */
#define USB_PRODUCT_MUSTEK_MDC800 0xa800 /* MDC-800 digital camera */
/* M-Systems products */
#define USB_PRODUCT_MSYSTEMS_DISKONKEY 0x0010 /* DiskOnKey */
#define USB_PRODUCT_MSYSTEMS_DISKONKEY2 0x0011 /* DiskOnKey */
/* Myson products */
#define USB_PRODUCT_MYSON_HEDEN 0x8818 /* USB-IDE */
/* National Semiconductor */
#define USB_PRODUCT_NATIONAL_BEARPAW1200 0x1000 /* BearPaw 1200 */
#define USB_PRODUCT_NATIONAL_BEARPAW2400 0x1001 /* BearPaw 2400 */
/* NEC products */
#define USB_PRODUCT_NEC_HUB 0x55aa /* hub */
#define USB_PRODUCT_NEC_HUB_B 0x55ab /* hub */
/* NEODIO products */
#define USB_PRODUCT_NEODIO_ND3260 0x3260 /* 8-in-1 Multi-format Flash Controller */
#define USB_PRODUCT_NEODIO_ND5010 0x5010 /* Multi-format Flash Controller */
/* Netac products */
#define USB_PRODUCT_NETAC_CF_CARD 0x1060 /* USB-CF-Card */
#define USB_PRODUCT_NETAC_ONLYDISK 0x0003 /* OnlyDisk */
/* NetChip Technology Products */
#define USB_PRODUCT_NETCHIP_TURBOCONNECT 0x1080 /* Turbo-Connect */
#define USB_PRODUCT_NETCHIP_CLIK_40 0xa140 /* USB Clik! 40 */
#define USB_PRODUCT_NETCHIP_ETHERNETGADGET 0xa4a2 /* Linux Ethernet/RNDIS gadget on pxa210/25x/26x */
/* Netgear products */
#define USB_PRODUCT_NETGEAR_EA101 0x1001 /* Ethernet */
#define USB_PRODUCT_NETGEAR_EA101X 0x1002 /* Ethernet */
#define USB_PRODUCT_NETGEAR_FA101 0x1020 /* Ethernet 10/100, USB1.1 */
#define USB_PRODUCT_NETGEAR_FA120 0x1040 /* USB 2.0 Ethernet */
#define USB_PRODUCT_NETGEAR_WG111V2_2 0x4240 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_NETGEAR_WG111U 0x4300 /* WG111U */
#define USB_PRODUCT_NETGEAR_WG111U_NF 0x4301 /* WG111U (no firmware) */
#define USB_PRODUCT_NETGEAR2_MA101 0x4100 /* MA101 */
#define USB_PRODUCT_NETGEAR2_MA101B 0x4102 /* MA101 Rev B */
#define USB_PRODUCT_NETGEAR3_WG111T 0x4250 /* WG111T */
#define USB_PRODUCT_NETGEAR3_WG111T_NF 0x4251 /* WG111T (no firmware) */
#define USB_PRODUCT_NETGEAR3_WPN111 0x5f00 /* WPN111 */
#define USB_PRODUCT_NETGEAR3_WPN111_NF 0x5f01 /* WPN111 (no firmware) */
/* Nikon products */
#define USB_PRODUCT_NIKON_E990 0x0102 /* Digital Camera E990 */
#define USB_PRODUCT_NIKON_LS40 0x4000 /* CoolScan LS40 ED */
#define USB_PRODUCT_NIKON_D300 0x041a /* Digital Camera D300 */
/* NovaTech Products */
#define USB_PRODUCT_NOVATECH_NV902 0x9020 /* NovaTech NV-902W */
#define USB_PRODUCT_NOVATECH_RT2573 0x9021 /* RT2573 */
/* Novatel Wireless products */
#define USB_PRODUCT_NOVATEL_V640 0x1100 /* Merlin V620 */
#define USB_PRODUCT_NOVATEL_CDMA_MODEM 0x1110 /* Novatel Wireless Merlin CDMA */
#define USB_PRODUCT_NOVATEL_V620 0x1110 /* Merlin V620 */
#define USB_PRODUCT_NOVATEL_V740 0x1120 /* Merlin V740 */
#define USB_PRODUCT_NOVATEL_V720 0x1130 /* Merlin V720 */
#define USB_PRODUCT_NOVATEL_U740 0x1400 /* Merlin U740 */
#define USB_PRODUCT_NOVATEL_U740_2 0x1410 /* Merlin U740 */
#define USB_PRODUCT_NOVATEL_U870 0x1420 /* Merlin U870 */
#define USB_PRODUCT_NOVATEL_XU870 0x1430 /* Merlin XU870 */
#define USB_PRODUCT_NOVATEL_X950D 0x1450 /* Merlin X950D */
#define USB_PRODUCT_NOVATEL_ES620 0x2100 /* ES620 CDMA */
#define USB_PRODUCT_NOVATEL_U720 0x2110 /* Merlin U720 */
#define USB_PRODUCT_NOVATEL_U727 0x4100 /* Merlin U727 CDMA */
#define USB_PRODUCT_NOVATEL_MC950D 0x4400 /* Novatel MC950D HSUPA */
#define USB_PRODUCT_NOVATEL_ZEROCD 0x5010 /* Novatel ZeroCD */
#define USB_PRODUCT_NOVATEL2_FLEXPACKGPS 0x0100 /* NovAtel FlexPack GPS receiver */
/* Merlin products */
#define USB_PRODUCT_MERLIN_V620 0x1110 /* Merlin V620 */
/* Olympus products */
#define USB_PRODUCT_OLYMPUS_C1 0x0102 /* C-1 Digital Camera */
#define USB_PRODUCT_OLYMPUS_C700 0x0105 /* C-700 Ultra Zoom */
/* OmniVision Technologies, Inc. products */
#define USB_PRODUCT_OMNIVISION_OV511 0x0511 /* OV511 Camera */
#define USB_PRODUCT_OMNIVISION_OV511PLUS 0xa511 /* OV511+ Camera */
/* OnSpec Electronic, Inc. */
#define USB_PRODUCT_ONSPEC_SDS_HOTFIND_D 0x0400 /* SDS-infrared.com Hotfind-D Infrared Camera */
#define USB_PRODUCT_ONSPEC_MDCFE_B_CF_READER 0xa000 /* MDCFE-B USB CF Reader */
#define USB_PRODUCT_ONSPEC_CFMS_RW 0xa001 /* SIIG/Datafab Memory Stick+CF Reader/Writer */
#define USB_PRODUCT_ONSPEC_READER 0xa003 /* Datafab-based Reader */
#define USB_PRODUCT_ONSPEC_CFSM_READER 0xa005 /* PNY/Datafab CF+SM Reader */
#define USB_PRODUCT_ONSPEC_CFSM_READER2 0xa006 /* Simple Tech/Datafab CF+SM Reader */
#define USB_PRODUCT_ONSPEC_MDSM_B_READER 0xa103 /* MDSM-B reader */
#define USB_PRODUCT_ONSPEC_CFSM_COMBO 0xa109 /* USB to CF + SM Combo (LC1) */
#define USB_PRODUCT_ONSPEC_UCF100 0xa400 /* FlashLink UCF-100 CompactFlash Reader */
#define USB_PRODUCT_ONSPEC2_IMAGEMATE_SDDR55 0xa103 /* ImageMate SDDR55 */
/* Option products */
#define USB_PRODUCT_OPTION_VODAFONEMC3G 0x5000 /* Vodafone Mobile Connect 3G datacard */
#define USB_PRODUCT_OPTION_GT3G 0x6000 /* GlobeTrotter 3G datacard */
#define USB_PRODUCT_OPTION_GT3GQUAD 0x6300 /* GlobeTrotter 3G QUAD datacard */
#define USB_PRODUCT_OPTION_GT3GPLUS 0x6600 /* GlobeTrotter 3G+ datacard */
#define USB_PRODUCT_OPTION_GTICON322 0xd033 /* GlobeTrotter Icon322 storage */
#define USB_PRODUCT_OPTION_GTMAX36 0x6701 /* GlobeTrotter Max 3.6 Modem */
#define USB_PRODUCT_OPTION_GTMAXHSUPA 0x7001 /* GlobeTrotter HSUPA */
/* OQO */
#define USB_PRODUCT_OQO_WIFI01 0x0002 /* model 01 WiFi interface */
#define USB_PRODUCT_OQO_BT01 0x0003 /* model 01 Bluetooth interface */
#define USB_PRODUCT_OQO_ETHER01PLUS 0x7720 /* model 01+ Ethernet */
#define USB_PRODUCT_OQO_ETHER01 0x8150 /* model 01 Ethernet interface */
/* Palm Computing, Inc. product */
#define USB_PRODUCT_PALM_SERIAL 0x0080 /* USB Serial */
#define USB_PRODUCT_PALM_M500 0x0001 /* Palm m500 */
#define USB_PRODUCT_PALM_M505 0x0002 /* Palm m505 */
#define USB_PRODUCT_PALM_M515 0x0003 /* Palm m515 */
#define USB_PRODUCT_PALM_I705 0x0020 /* Palm i705 */
#define USB_PRODUCT_PALM_TUNGSTEN_Z 0x0031 /* Palm Tungsten Z */
#define USB_PRODUCT_PALM_M125 0x0040 /* Palm m125 */
#define USB_PRODUCT_PALM_M130 0x0050 /* Palm m130 */
#define USB_PRODUCT_PALM_TUNGSTEN_T 0x0060 /* Palm Tungsten T */
#define USB_PRODUCT_PALM_ZIRE31 0x0061 /* Palm Zire 31 */
#define USB_PRODUCT_PALM_ZIRE 0x0070 /* Palm Zire */
/* Panasonic products */
#define USB_PRODUCT_PANASONIC_LS120CAM 0x0901 /* LS-120 Camera */
#define USB_PRODUCT_PANASONIC_KXL840AN 0x0d01 /* CD-R Drive KXL-840AN */
#define USB_PRODUCT_PANASONIC_KXLRW32AN 0x0d09 /* CD-R Drive KXL-RW32AN */
#define USB_PRODUCT_PANASONIC_KXLCB20AN 0x0d0a /* CD-R Drive KXL-CB20AN */
#define USB_PRODUCT_PANASONIC_KXLCB35AN 0x0d0e /* DVD-ROM & CD-R/RW */
#define USB_PRODUCT_PANASONIC_SDCAAE 0x1b00 /* MultiMediaCard */
/* Peracom products */
#define USB_PRODUCT_PERACOM_SERIAL1 0x0001 /* Serial */
#define USB_PRODUCT_PERACOM_ENET 0x0002 /* Ethernet */
#define USB_PRODUCT_PERACOM_ENET3 0x0003 /* At Home Ethernet */
#define USB_PRODUCT_PERACOM_ENET2 0x0005 /* Ethernet */
/* Philips products */
#define USB_PRODUCT_PHILIPS_DSS350 0x0101 /* DSS 350 Digital Speaker System */
#define USB_PRODUCT_PHILIPS_DSS 0x0104 /* DSS XXX Digital Speaker System */
#define USB_PRODUCT_PHILIPS_HUB 0x0201 /* hub */
#define USB_PRODUCT_PHILIPS_PCA646VC 0x0303 /* PCA646VC PC Camera */
#define USB_PRODUCT_PHILIPS_PCVC680K 0x0308 /* PCVC680K Vesta Pro PC Camera */
#define USB_PRODUCT_PHILIPS_DSS150 0x0471 /* DSS 150 Digital Speaker System */
#define USB_PRODUCT_PHILIPS_SNU5600 0x1236 /* SNU5600 */
#define USB_PRODUCT_PHILIPS_UM10016 0x1552 /* ISP 1581 Hi-Speed USB MPEG2 Encoder Reference Kit */
#define USB_PRODUCT_PHILIPS_DIVAUSB 0x1801 /* DIVA USB mp3 player */
/* Philips Semiconductor products */
#define USB_PRODUCT_PHILIPSSEMI_HUB1122 0x1122 /* hub */
/* P.I. Engineering products */
#define USB_PRODUCT_PIENGINEERING_PS2USB 0x020b /* PS2 to Mac USB Adapter */
/* Planex Communications products */
#define USB_PRODUCT_PLANEX_GW_US11H 0x14ea /* GW-US11H WLAN */
#define USB_PRODUCT_PLANEX2_GW_US11S 0x3220 /* GW-US11S WLAN */
#define USB_PRODUCT_PLANEX2_GW_US54GXS 0x5303 /* GW-US54GXS WLAN */
#define USB_PRODUCT_PLANEX2_GWUS54HP 0xab01 /* GW-US54HP */
#define USB_PRODUCT_PLANEX2_GWUS54MINI2 0xab50 /* GW-US54Mini2 */
#define USB_PRODUCT_PLANEX2_GWUS54SG 0xc002 /* GW-US54SG */
#define USB_PRODUCT_PLANEX2_GWUS54GZL 0xc007 /* GW-US54GZL */
#define USB_PRODUCT_PLANEX2_GWUS54GD 0xed01 /* GW-US54GD */
#define USB_PRODUCT_PLANEX2_GWUSMM 0xed02 /* GW-USMM */
#define USB_PRODUCT_PLANEX3_GWUS54GZ 0xab10 /* GW-US54GZ */
#define USB_PRODUCT_PLANEX3_GU1000T 0xab11 /* GU-1000T */
#define USB_PRODUCT_PLANEX3_GWUS54MINI 0xab13 /* GW-US54Mini */
/* Plextor Corp. */
#define USB_PRODUCT_PLEXTOR_40_12_40U 0x0011 /* PlexWriter 40/12/40U */
/* PLX products */
#define USB_PRODUCT_PLX_TESTBOARD 0x9060 /* test board */
/* PNY products */
#define USB_PRODUCT_PNY_ATTACHE2 0x0010 /* USB 2.0 Flash Drive */
/* PortGear products */
#define USB_PRODUCT_PORTGEAR_EA8 0x0008 /* Ethernet */
#define USB_PRODUCT_PORTGEAR_EA9 0x0009 /* Ethernet */
/* Portsmith products */
#define USB_PRODUCT_PORTSMITH_EEA 0x3003 /* Express Ethernet */
/* Primax products */
#define USB_PRODUCT_PRIMAX_G2X300 0x0300 /* G2-200 scanner */
#define USB_PRODUCT_PRIMAX_G2E300 0x0301 /* G2E-300 scanner */
#define USB_PRODUCT_PRIMAX_G2300 0x0302 /* G2-300 scanner */
#define USB_PRODUCT_PRIMAX_G2E3002 0x0303 /* G2E-300 scanner */
#define USB_PRODUCT_PRIMAX_9600 0x0340 /* Colorado USB 9600 scanner */
#define USB_PRODUCT_PRIMAX_600U 0x0341 /* Colorado 600u scanner */
#define USB_PRODUCT_PRIMAX_6200 0x0345 /* Visioneer 6200 scanner */
#define USB_PRODUCT_PRIMAX_19200 0x0360 /* Colorado USB 19200 scanner */
#define USB_PRODUCT_PRIMAX_1200U 0x0361 /* Colorado 1200u scanner */
#define USB_PRODUCT_PRIMAX_G600 0x0380 /* G2-600 scanner */
#define USB_PRODUCT_PRIMAX_636I 0x0381 /* ReadyScan 636i */
#define USB_PRODUCT_PRIMAX_G2600 0x0382 /* G2-600 scanner */
#define USB_PRODUCT_PRIMAX_G2E600 0x0383 /* G2E-600 scanner */
#define USB_PRODUCT_PRIMAX_COMFORT 0x4d01 /* Comfort */
#define USB_PRODUCT_PRIMAX_MOUSEINABOX 0x4d02 /* Mouse-in-a-Box */
#define USB_PRODUCT_PRIMAX_PCGAUMS1 0x4d04 /* Sony PCGA-UMS1 */
/* Prolific products */
#define USB_PRODUCT_PROLIFIC_PL2301 0x0000 /* PL2301 Host-Host interface */
#define USB_PRODUCT_PROLIFIC_PL2302 0x0001 /* PL2302 Host-Host interface */
#define USB_PRODUCT_PROLIFIC_RSAQ2 0x04bb /* PL2303 Serial (IODATA USB-RSAQ2) */
#define USB_PRODUCT_PROLIFIC_PL2303 0x2303 /* PL2303 Serial (ATEN/IOGEAR UC232A) */
#define USB_PRODUCT_PROLIFIC_PL2305 0x2305 /* Parallel printer */
#define USB_PRODUCT_PROLIFIC_ATAPI4 0x2307 /* ATAPI-4 Controller */
#define USB_PRODUCT_PROLIFIC_PL2501 0x2501 /* PL2501 Host-Host interface */
#define USB_PRODUCT_PROLIFIC_PHAROS 0xaaa0 /* Prolific Pharos */
#define USB_PRODUCT_PROLIFIC_RSAQ3 0xaaa2 /* PL2303 Serial Adapter (IODATA USB-RSAQ3) */
#define USB_PRODUCT_PROLIFIC2_WSIM 0x2001 /* Willcom WSIM */
/* Putercom products */
#define USB_PRODUCT_PUTERCOM_UPA100 0x047e /* USB-1284 BRIDGE */
/* Qcom products */
#define USB_PRODUCT_QCOM_RT2573 0x6196 /* RT2573 */
#define USB_PRODUCT_QCOM_RT2573_2 0x6229 /* RT2573 */
/* Qualcomm products */
#define USB_PRODUCT_QUALCOMM_CDMA_MSM 0x6000 /* CDMA Technologies MSM phone */
#define USB_PRODUCT_QUALCOMM2_RWT_FCT 0x3100 /* RWT FCT-CDMA 2000 1xRTT modem */
#define USB_PRODUCT_QUALCOMM2_CDMA_MSM 0x3196 /* CDMA Technologies MSM modem */
#define USB_PRODUCT_QUALCOMMINC_CDMA_MSM 0x0001 /* CDMA Technologies MSM modem */
#define USB_PRODUCT_QUALCOMMINC_ZTE_STOR 0x2000 /* USB ZTE Storage */
#define USB_PRODUCT_QUALCOMMINC_AC8700 0xfffe /* CDMA 1xEVDO USB modem */
/* Qtronix products */
#define USB_PRODUCT_QTRONIX_980N 0x2011 /* Scorpion-980N keyboard */
/* Quickshot products */
#define USB_PRODUCT_QUICKSHOT_STRIKEPAD 0x6238 /* USB StrikePad */
/* Radio Shack */
#define USB_PRODUCT_RADIOSHACK_USBCABLE 0x4026 /* USB to Serial Cable */
/* Rainbow Technologies products */
#define USB_PRODUCT_RAINBOW_IKEY2000 0x1200 /* i-Key 2000 */
/* Ralink Technology products */
#define USB_PRODUCT_RALINK_RT2570 0x1706 /* RT2500USB Wireless Adapter */
#define USB_PRODUCT_RALINK_RT2570_2 0x2570 /* RT2500USB Wireless Adapter */
#define USB_PRODUCT_RALINK_RT2573 0x2573 /* RT2501USB Wireless Adapter */
#define USB_PRODUCT_RALINK_RT2671 0x2671 /* RT2601USB Wireless Adapter */
#define USB_PRODUCT_RALINK_RT2570_3 0x9020 /* RT2500USB Wireless Adapter */
#define USB_PRODUCT_RALINK_RT2573_2 0x9021 /* RT2501USB Wireless Adapter */
/* ReakTek products */
/* Green House and CompUSA OEM this part */
#define USB_PRODUCT_REALTEK_USBKR100 0x8150 /* USBKR100 USB Ethernet */
/* Ricoh products */
#define USB_PRODUCT_RICOH_VGPVCC2 0x1830 /* VGP-VCC2 Camera */
#define USB_PRODUCT_RICOH_VGPVCC3 0x1832 /* VGP-VCC3 Camera */
#define USB_PRODUCT_RICOH_VGPVCC2_2 0x1833 /* VGP-VCC2 Camera */
#define USB_PRODUCT_RICOH_VGPVCC2_3 0x1834 /* VGP-VCC2 Camera */
#define USB_PRODUCT_RICOH_VGPVCC7 0x183a /* VGP-VCC7 Camera */
#define USB_PRODUCT_RICOH_VGPVCC8 0x183b /* VGP-VCC8 Camera */
/* Roland products */
#define USB_PRODUCT_ROLAND_UM1 0x0009 /* UM-1 MIDI I/F */
#define USB_PRODUCT_ROLAND_UM880N 0x0014 /* EDIROL UM-880 MIDI I/F (native) */
#define USB_PRODUCT_ROLAND_UM880G 0x0015 /* EDIROL UM-880 MIDI I/F (generic) */
/* Rockfire products */
#define USB_PRODUCT_ROCKFIRE_GAMEPAD 0x2033 /* gamepad 203USB */
/* RATOC Systems products */
#define USB_PRODUCT_RATOC_REXUSB60 0xb000 /* REX-USB60 */
/* Sagem products */
#define USB_PRODUCT_SAGEM_USBSERIAL 0x0027 /* USB-Serial Controller */
#define USB_PRODUCT_SAGEM_XG760A 0x004a /* XG-760A */
#define USB_PRODUCT_SAGEM_XG76NA 0x0062 /* XG-76NA */
/* Samsung products */
#define USB_PRODUCT_SAMSUNG_ML6060 0x3008 /* ML-6060 laser printer */
#define USB_PRODUCT_SAMSUNG_YP_U2 0x5050 /* YP-U2 MP3 Player */
#define USB_PRODUCT_SAMSUNG_I500 0x6601 /* I500 Palm USB Phone */
/* Samsung Techwin products */
#define USB_PRODUCT_SAMSUNG_TECHWIN_DIGIMAX_410 0x000a /* Digimax 410 */
/* SanDisk products */
#define USB_PRODUCT_SANDISK_SDDR05A 0x0001 /* ImageMate SDDR-05a */
#define USB_PRODUCT_SANDISK_SDDR31 0x0002 /* ImageMate SDDR-31 */
#define USB_PRODUCT_SANDISK_SDDR05 0x0005 /* ImageMate SDDR-05 */
#define USB_PRODUCT_SANDISK_SDDR12 0x0100 /* ImageMate SDDR-12 */
#define USB_PRODUCT_SANDISK_SDDR09 0x0200 /* ImageMate SDDR-09 */
#define USB_PRODUCT_SANDISK_SDDR75 0x0810 /* ImageMate SDDR-75 */
#define USB_PRODUCT_SANDISK_SDCZ2_256 0x7104 /* Cruzer Mini 256MB */
#define USB_PRODUCT_SANDISK_SDCZ4_128 0x7112 /* Cruzer Micro 128MB */
#define USB_PRODUCT_SANDISK_SDCZ4_256 0x7113 /* Cruzer Micro 256MB */
/* Sanyo Electric products */
#define USB_PRODUCT_SANYO_SCP4900 0x0701 /* Sanyo SCP-4900 USB Phone */
/* ScanLogic products */
#define USB_PRODUCT_SCANLOGIC_SL11R 0x0002 /* SL11R IDE Adapter */
#define USB_PRODUCT_SCANLOGIC_336CX 0x0300 /* Phantom 336CX - C3 scanner */
/* Senao products */
#define USB_PRODUCT_SENAO_NUB8301 0x2000 /* NUB-8301 */
/* ShanTou products */
#define USB_PRODUCT_SHANTOU_ST268 0x0268 /* ST268 */
#define USB_PRODUCT_SHANTOU_DM9601 0x9601 /* DM 9601 */
/* Shark products */
#define USB_PRODUCT_SHARK_PA 0x0400 /* Pocket Adapter */
/* Sharp products */
#define USB_PRODUCT_SHARP_SL5500 0x8004 /* Zaurus SL-5500 PDA */
#define USB_PRODUCT_SHARP_SLA300 0x8005 /* Zaurus SL-A300 PDA */
#define USB_PRODUCT_SHARP_SL5600 0x8006 /* Zaurus SL-5600 PDA */
#define USB_PRODUCT_SHARP_SLC700 0x8007 /* Zaurus SL-C700 PDA */
#define USB_PRODUCT_SHARP_SLC750 0x9031 /* Zaurus SL-C750 PDA */
#define USB_PRODUCT_SHARP_WZERO3ES 0x9123 /* W-ZERO3 ES Smartphone */
/* Shuttle Technology products */
#define USB_PRODUCT_SHUTTLE_EUSB 0x0001 /* E-USB Bridge */
#define USB_PRODUCT_SHUTTLE_EUSCSI 0x0002 /* eUSCSI Bridge */
#define USB_PRODUCT_SHUTTLE_SDDR09 0x0003 /* ImageMate SDDR09 */
#define USB_PRODUCT_SHUTTLE_EUSBCFSM 0x0005 /* eUSB SmartMedia / CompactFlash Adapter */
#define USB_PRODUCT_SHUTTLE_ZIOMMC 0x0006 /* eUSB MultiMediaCard Adapter */
#define USB_PRODUCT_SHUTTLE_HIFD 0x0007 /* Sony Hifd */
#define USB_PRODUCT_SHUTTLE_EUSBATAPI 0x0009 /* eUSB ATA/ATAPI Adapter */
#define USB_PRODUCT_SHUTTLE_CF 0x000a /* eUSB CompactFlash Adapter */
#define USB_PRODUCT_SHUTTLE_EUSCSI_B 0x000b /* eUSCSI Bridge */
#define USB_PRODUCT_SHUTTLE_EUSCSI_C 0x000c /* eUSCSI Bridge */
#define USB_PRODUCT_SHUTTLE_CDRW 0x0101 /* CD-RW Device */
#define USB_PRODUCT_SHUTTLE_EUSBORCA 0x0325 /* eUSB ORCA Quad Reader */
/* Siemens products */
#define USB_PRODUCT_SIEMENS_SPEEDSTREAM 0x1001 /* SpeedStream */
#define USB_PRODUCT_SIEMENS_SPEEDSTREAM22 0x1022 /* SpeedStream 1022 */
#define USB_PRODUCT_SIEMENS2_WLL013 0x001b /* WLL013 */
#define USB_PRODUCT_SIEMENS2_ES75 0x0034 /* GSM module MC35 */
#define USB_PRODUCT_SIEMENS2_WL54G 0x3c06 /* 54g USB Network Adapter */
#define USB_PRODUCT_SIEMENS3_SX1 0x0001 /* SX1 */
#define USB_PRODUCT_SIEMENS3_X65 0x0003 /* X65 */
#define USB_PRODUCT_SIEMENS3_X75 0x0004 /* X75 */
/* Sierra Wireless products */
#define USB_PRODUCT_SIERRA_AIRCARD580 0x0112 /* Sierra Wireless AirCard 580 */
#define USB_PRODUCT_SIERRA_AIRCARD595 0x0019 /* Sierra Wireless AirCard 595 */
#define USB_PRODUCT_SIERRA_AC595U 0x0120 /* Sierra Wireless AirCard 595U */
#define USB_PRODUCT_SIERRA_AC597E 0x0021 /* Sierra Wireless AirCard 597E */
#define USB_PRODUCT_SIERRA_C597 0x0023 /* Sierra Wireless Compass 597 */
#define USB_PRODUCT_SIERRA_AC875 0x6820 /* Sierra Wireless AirCard 875 */
#define USB_PRODUCT_SIERRA_AC880 0x6850 /* Sierra Wireless AirCard 880 */
#define USB_PRODUCT_SIERRA_AC881 0x6851 /* Sierra Wireless AirCard 881 */
#define USB_PRODUCT_SIERRA_AC880E 0x6852 /* Sierra Wireless AirCard 880E */
#define USB_PRODUCT_SIERRA_AC881E 0x6853 /* Sierra Wireless AirCard 881E */
#define USB_PRODUCT_SIERRA_AC880U 0x6855 /* Sierra Wireless AirCard 880U */
#define USB_PRODUCT_SIERRA_AC881U 0x6856 /* Sierra Wireless AirCard 881U */
#define USB_PRODUCT_SIERRA_AC885U 0x6880 /* Sierra Wireless AirCard 885U */
#define USB_PRODUCT_SIERRA_EM5625 0x0017 /* EM5625 */
#define USB_PRODUCT_SIERRA_MC5720 0x0218 /* MC5720 Wireless Modem */
#define USB_PRODUCT_SIERRA_MC5720_2 0x0018 /* MC5720 */
#define USB_PRODUCT_SIERRA_MC5725 0x0020 /* MC5725 */
#define USB_PRODUCT_SIERRA_MINI5725 0x0220 /* Sierra Wireless miniPCI 5275 */
#define USB_PRODUCT_SIERRA_MC8755_2 0x6802 /* MC8755 */
#define USB_PRODUCT_SIERRA_MC8765 0x6803 /* MC8765 */
#define USB_PRODUCT_SIERRA_MC8755 0x6804 /* MC8755 */
#define USB_PRODUCT_SIERRA_AC875U 0x6812 /* AC875U HSDPA USB Modem */
#define USB_PRODUCT_SIERRA_MC8755_3 0x6813 /* MC8755 HSDPA */
#define USB_PRODUCT_SIERRA_MC8775_2 0x6815 /* MC8775 */
#define USB_PRODUCT_SIERRA_AIRCARD875 0x6820 /* Aircard 875 HSDPA */
#define USB_PRODUCT_SIERRA_MC8780 0x6832 /* MC8780 */
#define USB_PRODUCT_SIERRA_MC8781 0x6833 /* MC8781 */
#define USB_PRODUCT_SIERRA_TRUINSTALL 0x0fff /* Aircard Tru Installer */
/* Sigmatel products */
#define USB_PRODUCT_SIGMATEL_I_BEAD100 0x8008 /* i-Bead 100 MP3 Player */
/* SIIG products */
/* Also: Omnidirectional Control Technology products */
#define USB_PRODUCT_SIIG_DIGIFILMREADER 0x0004 /* DigiFilm-Combo Reader */
#define USB_PRODUCT_SIIG_WINTERREADER 0x0330 /* WINTERREADER Reader */
#define USB_PRODUCT_SIIG2_USBTOETHER 0x0109 /* USB TO Ethernet */
#define USB_PRODUCT_SIIG2_US2308 0x0421 /* Serial */
/* Silicom products */
#define USB_PRODUCT_SILICOM_U2E 0x0001 /* U2E */
#define USB_PRODUCT_SILICOM_GPE 0x0002 /* Psion Gold Port Ethernet */
/* SI Labs */
#define USB_PRODUCT_SILABS_POLOLU 0x803b /* Pololu Serial */
#define USB_PRODUCT_SILABS_ARGUSISP 0x8066 /* Argussoft ISP */
#define USB_PRODUCT_SILABS_CRUMB128 0x807a /* Crumb128 board */
#define USB_PRODUCT_SILABS_DEGREE 0x80ca /* Degree Controls Inc */
#define USB_PRODUCT_SILABS_TRAQMATE 0x80ed /* Track Systems Traqmate */
#define USB_PRODUCT_SILABS_SUUNTO 0x80f6 /* Suunto Sports Instrument */
#define USB_PRODUCT_SILABS_BURNSIDE 0x813d /* Burnside Telecon Deskmobile */
#define USB_PRODUCT_SILABS_HELICOM 0x815e /* Helicomm IP-Link 1220-DVM */
#define USB_PRODUCT_SILABS_CP2102 0xea60 /* SILABS USB UART */
#define USB_PRODUCT_SILABS_LIPOWSKY_JTAG 0x81c8 /* Lipowsky Baby-JTAG */
#define USB_PRODUCT_SILABS_LIPOWSKY_LIN 0x81e2 /* Lipowsky Baby-LIN */
#define USB_PRODUCT_SILABS_LIPOWSKY_HARP 0x8218 /* Lipowsky HARP-1 */
#define USB_PRODUCT_SILABS_CP2102 0xea60 /* SILABS USB UARTa */
#define USB_PRODUCT_SILABS_CP210X_2 0xea61 /* CP210x Serial */
#define USB_PRODUCT_SILABS2_DCU11CLONE 0xaa26 /* DCU-11 clone */
/* Silicon Portals Inc. */
#define USB_PRODUCT_SILICONPORTALS_YAPPH_NF 0x0200 /* YAP Phone (no firmware) */
#define USB_PRODUCT_SILICONPORTALS_YAPPHONE 0x0201 /* YAP Phone */
/* Sirius Technologies products */
#define USB_PRODUCT_SIRIUS_ROADSTER 0x0001 /* NetComm Roadster II 56 USB */
/* Sitecom products */
#define USB_PRODUCT_SITECOM_LN029 0x182d /* USB 2.0 Ethernet */
#define USB_PRODUCT_SITECOM_SERIAL 0x2068 /* USB to serial cable (v2) */
#define USB_PRODUCT_SITECOM2_WL022 0x182d /* WL-022 */
/* Sitecom Europe products */
#define USB_PRODUCT_SITECOMEU_LN028 0x061c /* LN-028 */
#define USB_PRODUCT_SITECOMEU_WL113 0x9071 /* WL-113 */
#define USB_PRODUCT_SITECOMEU_ZD1211B 0x9075 /* ZD1211B */
#define USB_PRODUCT_SITECOMEU_WL172 0x90ac /* WL-172 */
#define USB_PRODUCT_SITECOMEU_WL113R2 0x9712 /* WL-113 rev 2 */
/* Skanhex Technology products */
#define USB_PRODUCT_SKANHEX_MD_7425 0x410a /* MD 7425 Camera */
#define USB_PRODUCT_SKANHEX_SX_520Z 0x5200 /* SX 520z Camera */
/* SmartBridges products */
#define USB_PRODUCT_SMARTBRIDGES_SMARTLINK 0x0001 /* SmartLink USB Ethernet */
#define USB_PRODUCT_SMARTBRIDGES_SMARTNIC 0x0003 /* smartNIC 2 PnP Ethernet */
/* SMC products */
#define USB_PRODUCT_SMC_2102USB 0x0100 /* 10Mbps Ethernet */
#define USB_PRODUCT_SMC_2202USB 0x0200 /* 10/100 Ethernet */
#define USB_PRODUCT_SMC_2206USB 0x0201 /* EZ Connect USB Ethernet */
#define USB_PRODUCT_SMC_2862WG 0xee13 /* EZ Connect Wireless Adapter */
#define USB_PRODUCT_SMC2_2020HUB 0x2020 /* USB Hub */
#define USB_PRODUCT_SMC3_2662WUSB 0xa002 /* 2662W-AR Wireless */
/* SOHOware products */
#define USB_PRODUCT_SOHOWARE_NUB100 0x9100 /* 10/100 USB Ethernet */
#define USB_PRODUCT_SOHOWARE_NUB110 0x9110 /* 10/100 USB Ethernet */
/* SOLID YEAR products */
#define USB_PRODUCT_SOLIDYEAR_KEYBOARD 0x2101 /* Solid Year USB keyboard */
/* SONY products */
#define USB_PRODUCT_SONY_DSC 0x0010 /* DSC cameras */
#define USB_PRODUCT_SONY_MS_NW_MS7 0x0025 /* Memorystick NW-MS7 */
#define USB_PRODUCT_SONY_PORTABLE_HDD_V2 0x002b /* Portable USB Harddrive V2 */
#define USB_PRODUCT_SONY_MSACUS1 0x002d /* Memorystick MSAC-US1 */
#define USB_PRODUCT_SONY_HANDYCAM 0x002e /* Handycam */
#define USB_PRODUCT_SONY_MSC 0x0032 /* MSC memory stick slot */
#define USB_PRODUCT_SONY_CLIE_35 0x0038 /* Sony Clie v3.5 */
#define USB_PRODUCT_SONY_MS_PEG_N760C 0x0058 /* PEG N760c Memorystick */
#define USB_PRODUCT_SONY_CLIE_40 0x0066 /* Sony Clie v4.0 */
#define USB_PRODUCT_SONY_MS_MSC_U03 0x0069 /* Memorystick MSC-U03 */
#define USB_PRODUCT_SONY_CLIE_40_MS 0x006d /* Sony Clie v4.0 Memory Stick slot */
#define USB_PRODUCT_SONY_CLIE_S360 0x0095 /* Sony Clie s360 */
#define USB_PRODUCT_SONY_CLIE_41_MS 0x0099 /* Sony Clie v4.1 Memory Stick slot */
#define USB_PRODUCT_SONY_CLIE_41 0x009a /* Sony Clie v4.1 */
#define USB_PRODUCT_SONY_CLIE_NX60 0x00da /* Sony Clie nx60 */
#define USB_PRODUCT_SONY_CLIE_TH55 0x0144 /* Sony Clie th55 */
#define USB_PRODUCT_SONY_CLIE_TJ37 0x0169 /* Sony Clie tj37 */
#define USB_PRODUCT_SONY_RF_RECEIVER 0x01db /* Sony RF mouse/kbd Receiver VGP-WRC1 */
/* Sony Ericsson products */
#define USB_PRODUCT_SONYERICSSON_DCU10 0x0528 /* USB Cable */
/* SOURCENEXT products */
#define USB_PRODUCT_SOURCENEXT_KEIKAI8 0x039f /* KeikaiDenwa 8 */
#define USB_PRODUCT_SOURCENEXT_KEIKAI8_CHG 0x012e /* KeikaiDenwa 8 with charger */
/* SparkLAN products */
#define USB_PRODUCT_SPARKLAN_RT2573 0x0004 /* RT2573 */
/* Sphairon Access Systems GmbH products */
#define USB_PRODUCT_SPHAIRON_UB801R 0x0110 /* UB801R */
/* Stelera Wireless products */
#define USB_PRODUCT_STELERA_ZEROCD 0x1000 /* Zerocd Installer */
#define USB_PRODUCT_STELERA_C105 0x1002 /* Stelera/Bandrish C105 USB */
/* STMicroelectronics products */
#define USB_PRODUCT_STMICRO_BIOCPU 0x2016 /* Biometric Coprocessor */
#define USB_PRODUCT_STMICRO_COMMUNICATOR 0x7554 /* USB Communicator */
/* STSN products */
#define USB_PRODUCT_STSN_STSN0001 0x0001 /* Internet Access Device */
/* SUN Corporation products */
#define USB_PRODUCT_SUNTAC_DS96L 0x0003 /* SUNTAC U-Cable type D2 */
#define USB_PRODUCT_SUNTAC_PS64P1 0x0005 /* SUNTAC U-Cable type P1 */
#define USB_PRODUCT_SUNTAC_VS10U 0x0009 /* SUNTAC Slipper U */
#define USB_PRODUCT_SUNTAC_IS96U 0x000a /* SUNTAC Ir-Trinity */
#define USB_PRODUCT_SUNTAC_AS64LX 0x000b /* SUNTAC U-Cable type A3 */
#define USB_PRODUCT_SUNTAC_AS144L4 0x0011 /* SUNTAC U-Cable type A4 */
/* Sun Microsystems products */
#define USB_PRODUCT_SUN_KEYBOARD 0x0005 /* Type 6 USB keyboard */
/* XXX The above is a North American PC style keyboard possibly */
#define USB_PRODUCT_SUN_MOUSE 0x0100 /* Type 6 USB mouse */
/* Supra products */
#define USB_PRODUCT_DIAMOND2_SUPRAEXPRESS56K 0x07da /* Supra Express 56K modem */
#define USB_PRODUCT_DIAMOND2_SUPRA2890 0x0b4a /* SupraMax 2890 56K Modem */
#define USB_PRODUCT_DIAMOND2_RIO600USB 0x5001 /* Rio 600 USB */
#define USB_PRODUCT_DIAMOND2_RIO800USB 0x5002 /* Rio 800 USB */
/* Surecom Technology products */
#define USB_PRODUCT_SURECOM_RT2570 0x11f3 /* RT2570 */
#define USB_PRODUCT_SURECOM_RT2573 0x31f3 /* RT2573 */
/* Sweex products */
#define USB_PRODUCT_SWEEX_ZD1211 0x1809 /* ZD1211 */
/* System TALKS, Inc. */
#define USB_PRODUCT_SYSTEMTALKS_SGCX2UL 0x1920 /* SGC-X2UL */
/* Tapwave products */
#define USB_PRODUCT_TAPWAVE_ZODIAC 0x0100 /* Zodiac */
/* Taugagreining products */
#define USB_PRODUCT_TAUGA_CAMERAMATE 0x0005 /* CameraMate (DPCM_USB) */
/* TDK products */
#define USB_PRODUCT_TDK_UPA9664 0x0115 /* USB-PDC Adapter UPA9664 */
#define USB_PRODUCT_TDK_UCA1464 0x0116 /* USB-cdmaOne Adapter UCA1464 */
#define USB_PRODUCT_TDK_UHA6400 0x0117 /* USB-PHS Adapter UHA6400 */
#define USB_PRODUCT_TDK_UPA6400 0x0118 /* USB-PHS Adapter UPA6400 */
#define USB_PRODUCT_TDK_BT_DONGLE 0x0309 /* Bluetooth USB dongle */
/* TEAC products */
#define USB_PRODUCT_TEAC_FD05PUB 0x0000 /* FD-05PUB floppy */
/* Tekram Technology products */
#define USB_PRODUCT_TEKRAM_QUICKWLAN 0x1630 /* QuickWLAN */
#define USB_PRODUCT_TEKRAM_ZD1211_1 0x5630 /* ZD1211 */
#define USB_PRODUCT_TEKRAM_ZD1211_2 0x6630 /* ZD1211 */
/* Telex Communications products */
#define USB_PRODUCT_TELEX_MIC1 0x0001 /* Enhanced USB Microphone */
/* Ten X Technology, Inc. */
#define USB_PRODUCT_TENX_UAUDIO0 0xf211 /* USB audio headset */
/* Texas Intel products */
#define USB_PRODUCT_TI_UTUSB41 0x1446 /* UT-USB41 hub */
#define USB_PRODUCT_TI_TUSB2046 0x2046 /* TUSB2046 hub */
/* Thrustmaster products */
#define USB_PRODUCT_THRUST_FUSION_PAD 0xa0a3 /* Fusion Digital Gamepad */
/* Topre Corporation products */
#define USB_PRODUCT_TOPRE_HHKB 0x0100 /* HHKB Professional */
/* Toshiba Corporation products */
#define USB_PRODUCT_TOSHIBA_POCKETPC_E740 0x0706 /* PocketPC e740 */
/* Trek Technology products */
#define USB_PRODUCT_TREK_THUMBDRIVE 0x1111 /* ThumbDrive */
#define USB_PRODUCT_TREK_MEMKEY 0x8888 /* IBM USB Memory Key */
#define USB_PRODUCT_TREK_THUMBDRIVE_8MB 0x9988 /* ThumbDrive_8MB */
/* Tripp-Lite products */
#define USB_PRODUCT_TRIPPLITE_U209 0x2008 /* Serial */
/* Trumpion products */
#define USB_PRODUCT_TRUMPION_T33520 0x1001 /* T33520 USB Flash Card Controller */
#define USB_PRODUCT_TRUMPION_C3310 0x1100 /* Comotron C3310 MP3 player */
#define USB_PRODUCT_TRUMPION_MP3 0x1200 /* MP3 player */
/* TwinMOS */
#define USB_PRODUCT_TWINMOS_G240 0xa006 /* G240 */
#define USB_PRODUCT_TWINMOS_MDIV 0x1325 /* Memory Disk IV */
/* Ubiquam products */
#define USB_PRODUCT_UBIQUAM_UALL 0x3100 /* CDMA 1xRTT USB Modem (U-100/105/200/300/520) */
/* Ultima products */
#define USB_PRODUCT_ULTIMA_1200UBPLUS 0x4002 /* 1200 UB Plus scanner */
/* UMAX products */
#define USB_PRODUCT_UMAX_ASTRA1236U 0x0002 /* Astra 1236U Scanner */
#define USB_PRODUCT_UMAX_ASTRA1220U 0x0010 /* Astra 1220U Scanner */
#define USB_PRODUCT_UMAX_ASTRA2000U 0x0030 /* Astra 2000U Scanner */
#define USB_PRODUCT_UMAX_ASTRA2100U 0x0130 /* Astra 2100U Scanner */
#define USB_PRODUCT_UMAX_ASTRA2200U 0x0230 /* Astra 2200U Scanner */
#define USB_PRODUCT_UMAX_ASTRA3400 0x0060 /* Astra 3400 Scanner */
/* U-MEDIA Communications products */
#define USB_PRODUCT_UMEDIA_TEW444UBEU 0x3006 /* TEW-444UB EU */
#define USB_PRODUCT_UMEDIA_TEW444UBEU_NF 0x3007 /* TEW-444UB EU (no firmware) */
#define USB_PRODUCT_UMEDIA_TEW429UB_A 0x300a /* TEW-429UB_A */
#define USB_PRODUCT_UMEDIA_TEW429UB 0x300b /* TEW-429UB */
#define USB_PRODUCT_UMEDIA_TEW429UBC1 0x300d /* TEW-429UB C1 */
#define USB_PRODUCT_UMEDIA_ALL0298V2 0x3204 /* ALL0298 v2 */
#define USB_PRODUCT_UMEDIA_AR5523_2 0x3205 /* AR5523 */
#define USB_PRODUCT_UMEDIA_AR5523_2_NF 0x3206 /* AR5523 (no firmware) */
/* Universal Access products */
#define USB_PRODUCT_UNIACCESS_PANACHE 0x0101 /* Panache Surf USB ISDN Adapter */
/* U.S. Robotics products */
#define USB_PRODUCT_USR_USR5423 0x0121 /* USR5423 WLAN */
/* VIA Technologies products */
#define USB_PRODUCT_VIA_USB2IDEBRIDGE 0x6204 /* USB 2.0 IDE Bridge */
/* USI products */
#define USB_PRODUCT_USI_MC60 0x10c5 /* MC60 Serial */
/* VidzMedia products */
#define USB_PRODUCT_VIDZMEDIA_MONSTERTV 0x4fb1 /* MonsterTV P2H */
/* Vision products */
#define USB_PRODUCT_VISION_VC6452V002 0x0002 /* CPiA Camera */
/* Visioneer products */
#define USB_PRODUCT_VISIONEER_7600 0x0211 /* OneTouch 7600 */
#define USB_PRODUCT_VISIONEER_5300 0x0221 /* OneTouch 5300 */
#define USB_PRODUCT_VISIONEER_3000 0x0224 /* Scanport 3000 */
#define USB_PRODUCT_VISIONEER_6100 0x0231 /* OneTouch 6100 */
#define USB_PRODUCT_VISIONEER_6200 0x0311 /* OneTouch 6200 */
#define USB_PRODUCT_VISIONEER_8100 0x0321 /* OneTouch 8100 */
#define USB_PRODUCT_VISIONEER_8600 0x0331 /* OneTouch 8600 */
/* Vivitar products */
#define USB_PRODUCT_VIVITAR_35XX 0x0003 /* Vivicam 35Xx */
/* VTech products */
#define USB_PRODUCT_VTECH_RT2570 0x3012 /* RT2570 */
#define USB_PRODUCT_VTECH_ZD1211B 0x3014 /* ZD1211B */
/* Wacom products */
#define USB_PRODUCT_WACOM_CT0405U 0x0000 /* CT-0405-U Tablet */
#define USB_PRODUCT_WACOM_GRAPHIRE 0x0010 /* Graphire */
#define USB_PRODUCT_WACOM_GRAPHIRE3_4X5 0x0013 /* Graphire 3 4x5 */
#define USB_PRODUCT_WACOM_INTUOSA5 0x0021 /* Intuos A5 */
#define USB_PRODUCT_WACOM_GD0912U 0x0022 /* Intuos 9x12 Graphics Tablet */
/* WCH products*/
#define USB_PRODUCT_WCH_CH341SER 0x5523 /* CH341/CH340 USB-Serial Bridge */
/* Western Digital products */
#define USB_PRODUCT_WESTERN_COMBO 0x0200 /* Firewire USB Combo */
#define USB_PRODUCT_WESTERN_EXTHDD 0x0400 /* External HDD */
#define USB_PRODUCT_WESTERN_HUB 0x0500 /* USB HUB */
#define USB_PRODUCT_WESTERN_MYBOOK 0x0901 /* MyBook External HDD */
/* Windbond Electronics */
#define USB_PRODUCT_WINBOND_UH104 0x5518 /* 4-port USB Hub */
/* WinMaxGroup products */
#define USB_PRODUCT_WINMAXGROUP_FLASH64MC 0x6660 /* USB Flash Disk 64M-C */
/* Wistron NeWeb products */
#define USB_PRODUCT_WISTRONNEWEB_UR045G 0x0427 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_WISTRONNEWEB_UR055G 0x0711 /* UR055G */
#define USB_PRODUCT_WISTRONNEWEB_AR5523_1 0x0826 /* AR5523 */
#define USB_PRODUCT_WISTRONNEWEB_AR5523_1_NF 0x0827 /* AR5523 (no firmware) */
#define USB_PRODUCT_WISTRONNEWEB_AR5523_2 0x082a /* AR5523 */
#define USB_PRODUCT_WISTRONNEWEB_AR5523_2_NF 0x0829 /* AR5523 (no firmware) */
/* Xerox products */
#define USB_PRODUCT_XEROX_WCM15 0xffef /* WorkCenter M15 */
/* Xirlink products */
#define USB_PRODUCT_XIRLINK_PCCAM 0x8080 /* IBM PC Camera */
/* Xyratex products */
#define USB_PRODUCT_XYRATEX_PRISM_GT_1 0x2000 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_XYRATEX_PRISM_GT_2 0x2002 /* PrismGT USB 2.0 WLAN */
/* Y-E Data products */
#define USB_PRODUCT_YEDATA_FLASHBUSTERU 0x0000 /* Flashbuster-U */
/* Yamaha products */
#define USB_PRODUCT_YAMAHA_UX256 0x1000 /* UX256 MIDI I/F */
#define USB_PRODUCT_YAMAHA_UX96 0x1008 /* UX96 MIDI I/F */
#define USB_PRODUCT_YAMAHA_RTA54I 0x4000 /* NetVolante RTA54i Broadband&ISDN Router */
#define USB_PRODUCT_YAMAHA_RTA55I 0x4004 /* NetVolante RTA55i Broadband VoIP Router */
#define USB_PRODUCT_YAMAHA_RTW65B 0x4001 /* NetVolante RTW65b Broadband Wireless Router */
#define USB_PRODUCT_YAMAHA_RTW65I 0x4002 /* NetVolante RTW65i Broadband&ISDN Wireless Router */
/* Yano products */
#define USB_PRODUCT_YANO_U640MO 0x0101 /* U640MO-03 */
#define USB_PRODUCT_YANO_FW800HD 0x05fc /* METALWEAR-HDD */
/* Yiso Wireless Co. products */
#define USB_PRODUCT_YISO_C893 0xc893 /* CDMA 2000 1xEVDO PC Card */
/* Z-Com products */
#define USB_PRODUCT_ZCOM_M4Y750 0x0001 /* M4Y-750 */
#define USB_PRODUCT_ZCOM_XI725 0x0002 /* XI-725/726 */
#define USB_PRODUCT_ZCOM_XI735 0x0005 /* XI-735 */
#define USB_PRODUCT_ZCOM_XG703A 0x0008 /* PrismGT USB 2.0 WLAN */
#define USB_PRODUCT_ZCOM_ZD1211 0x0011 /* ZD1211 */
#define USB_PRODUCT_ZCOM_AR5523 0x0012 /* AR5523 */
#define USB_PRODUCT_ZCOM_AR5523_NF 0x0013 /* AR5523 driver (no firmware) */
#define USB_PRODUCT_ZCOM_ZD1211B 0x001a /* ZD1211B */
/* Zinwell products */
#define USB_PRODUCT_ZINWELL_RT2570 0x0260 /* RT2570 */
/* Zoom Telephonics, Inc. products */
#define USB_PRODUCT_ZOOM_2986L 0x9700 /* 2986L Fax modem */
/* Zoran Microelectronics products */
#define USB_PRODUCT_ZORAN_EX20DSC 0x4343 /* Digital Camera EX-20 DSC */
/* Zydas Technology Corporation products */
#define USB_PRODUCT_ZYDAS_ZD1211 0x1211 /* ZD1211 WLAN abg */
#define USB_PRODUCT_ZYDAS_ZD1211B 0x1215 /* ZD1211B */
/* ZyXEL Communication Co. products */
#define USB_PRODUCT_ZYXEL_OMNI56K 0x1500 /* Omni 56K Plus */
#define USB_PRODUCT_ZYXEL_980N 0x2011 /* Scorpion-980N keyboard */
#define USB_PRODUCT_ZYXEL_ZYAIRG220 0x3401 /* ZyAIR G-220 */
#define USB_PRODUCT_ZYXEL_G200V2 0x3407 /* G-200 v2 */
#define USB_PRODUCT_ZYXEL_AG225H 0x3409 /* AG-225H */
#define USB_PRODUCT_ZYXEL_M202 0x340a /* M-202 */
#define USB_PRODUCT_ZYXEL_G220V2 0x340f /* G-220 v2 */
#define USB_PRODUCT_ZYXEL_G202 0x3410 /* G-202 */
|