Home | History | Annotate | Line # | Download | only in pcmcia
pcmciadevs_data.h revision 1.120.2.11
      1  1.120.2.10   nathanw /*	$NetBSD: pcmciadevs_data.h,v 1.120.2.11 2002/04/17 00:06:09 nathanw Exp $	*/
      2         1.1  christos 
      3         1.1  christos /*
      4         1.1  christos  * THIS FILE AUTOMATICALLY GENERATED.  DO NOT EDIT.
      5         1.1  christos  *
      6         1.1  christos  * generated from:
      7  1.120.2.11   nathanw  *	NetBSD: pcmciadevs,v 1.164 2002/04/10 02:07:45 ichiro Exp
      8         1.1  christos  */
      9   1.120.2.8   nathanw /* $FreeBSD: src/sys/dev/pccard/pccarddevs,v 1.20 2001/11/19 05:02:55 imp Exp $*/
     10         1.1  christos 
     11        1.15  christos /*-
     12        1.15  christos  * Copyright (c) 1998 The NetBSD Foundation, Inc.
     13         1.1  christos  * All rights reserved.
     14         1.1  christos  *
     15        1.15  christos  * This code is derived from software contributed to The NetBSD Foundation
     16        1.15  christos  * by Christos Zoulas.
     17        1.15  christos  *
     18         1.1  christos  * Redistribution and use in source and binary forms, with or without
     19         1.1  christos  * modification, are permitted provided that the following conditions
     20         1.1  christos  * are met:
     21         1.1  christos  * 1. Redistributions of source code must retain the above copyright
     22         1.1  christos  *    notice, this list of conditions and the following disclaimer.
     23         1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     24         1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     25         1.1  christos  *    documentation and/or other materials provided with the distribution.
     26         1.1  christos  * 3. All advertising materials mentioning features or use of this software
     27         1.1  christos  *    must display the following acknowledgement:
     28        1.15  christos  *        This product includes software developed by the NetBSD
     29        1.15  christos  *        Foundation, Inc. and its contributors.
     30        1.15  christos  * 4. Neither the name of The NetBSD Foundation nor the names of its
     31        1.15  christos  *    contributors may be used to endorse or promote products derived
     32        1.15  christos  *    from this software without specific prior written permission.
     33         1.1  christos  *
     34        1.15  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     35        1.15  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     36        1.15  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     37        1.15  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     38        1.15  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     39        1.15  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     40        1.15  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     41        1.15  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     42        1.15  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     43        1.15  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     44        1.15  christos  * POSSIBILITY OF SUCH DAMAGE.
     45         1.1  christos  */
     46         1.1  christos 
     47   1.120.2.7   nathanw struct pcmcia_knowndev {
     48   1.120.2.7   nathanw 	int vendorid;
     49   1.120.2.7   nathanw 	int productid;
     50   1.120.2.7   nathanw 	struct pcmcia_knowndev_cis {
     51   1.120.2.7   nathanw 		char *vendor;
     52   1.120.2.7   nathanw 		char *product;
     53   1.120.2.7   nathanw 		char *version;
     54   1.120.2.7   nathanw 		char *revision;
     55   1.120.2.7   nathanw 	}cis;
     56   1.120.2.7   nathanw 	int flags;
     57   1.120.2.7   nathanw 	char *vendorname;
     58   1.120.2.7   nathanw 	char *devicename;
     59   1.120.2.7   nathanw 	int reserve;
     60   1.120.2.7   nathanw };
     61   1.120.2.7   nathanw 
     62   1.120.2.7   nathanw #define	PCMCIA_CIS_INVALID		{ NULL, NULL, NULL, NULL }
     63   1.120.2.7   nathanw #define	PCMCIA_KNOWNDEV_NOPROD		0
     64   1.120.2.7   nathanw 
     65         1.1  christos struct pcmcia_knowndev pcmcia_knowndevs[] = {
     66         1.1  christos 	{
     67   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CRWE737A,
     68   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CRWE737A,
     69         1.1  christos 	    0,
     70   1.120.2.6   nathanw 	    "3Com Corporation",
     71   1.120.2.7   nathanw 	    "3Com AirConnect Wireless LAN",	}
     72   1.120.2.7   nathanw 	,
     73         1.1  christos 	{
     74   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXM056BNW,
     75   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CXM056BNW,
     76         1.1  christos 	    0,
     77   1.120.2.6   nathanw 	    "3Com Corporation",
     78   1.120.2.7   nathanw 	    "3Com/NoteWorthy 3CXM056-BNW 56K Modem",	}
     79   1.120.2.7   nathanw 	,
     80        1.93      joda 	{
     81   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556,
     82   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CXEM556,
     83        1.93      joda 	    0,
     84        1.93      joda 	    "3Com Corporation",
     85   1.120.2.7   nathanw 	    "3Com/Megahertz 3CXEM556 Ethernet/Modem",	}
     86   1.120.2.7   nathanw 	,
     87   1.120.2.6   nathanw 	{
     88   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CXEM556INT,
     89   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CXEM556INT,
     90   1.120.2.6   nathanw 	    0,
     91   1.120.2.6   nathanw 	    "3Com Corporation",
     92   1.120.2.7   nathanw 	    "3Com/Megahertz 3CXEM556-INT Ethernet/Modem",	}
     93   1.120.2.7   nathanw 	,
     94        1.80       cgd 	{
     95   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CCFEM556BI,
     96   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CCFEM556BI,
     97   1.120.2.6   nathanw 	    0,
     98   1.120.2.6   nathanw 	    "3Com Corporation",
     99   1.120.2.7   nathanw 	    "3Com/Megahertz 3CCFEM556BI Ethernet/Modem",	}
    100   1.120.2.7   nathanw 	,
    101   1.120.2.6   nathanw 	{
    102         1.1  christos 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C562,
    103         1.1  christos 	    PCMCIA_CIS_3COM_3C562,
    104         1.1  christos 	    0,
    105         1.1  christos 	    "3Com Corporation",
    106   1.120.2.7   nathanw 	    "3Com 3c562 33.6 Modem/10Mbps Ethernet",	}
    107   1.120.2.7   nathanw 	,
    108         1.1  christos 	{
    109         1.1  christos 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C589,
    110         1.1  christos 	    PCMCIA_CIS_3COM_3C589,
    111         1.1  christos 	    0,
    112         1.1  christos 	    "3Com Corporation",
    113   1.120.2.7   nathanw 	    "3Com 3c589 10Mbps Ethernet",	}
    114   1.120.2.7   nathanw 	,
    115        1.14   thorpej 	{
    116        1.14   thorpej 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C574,
    117        1.14   thorpej 	    PCMCIA_CIS_3COM_3C574,
    118        1.14   thorpej 	    0,
    119        1.14   thorpej 	    "3Com Corporation",
    120   1.120.2.7   nathanw 	    "3Com 3c574-TX 10/100Mbps Ethernet",	}
    121   1.120.2.7   nathanw 	,
    122        1.30      marc 	{
    123   1.120.2.8   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3C1,
    124   1.120.2.8   nathanw 	    PCMCIA_CIS_3COM_3C1,
    125   1.120.2.8   nathanw 	    0,
    126   1.120.2.8   nathanw 	    "3Com Corporation",
    127   1.120.2.8   nathanw 	    "3Com Megahertz 3C1 10Mbps LAN CF+ Card",	}
    128   1.120.2.8   nathanw 	,
    129   1.120.2.8   nathanw 	{
    130   1.120.2.6   nathanw 	    PCMCIA_VENDOR_3COM, PCMCIA_PRODUCT_3COM_3CRWE62092A,
    131   1.120.2.6   nathanw 	    PCMCIA_CIS_3COM_3CRWE62092A,
    132        1.59     soren 	    0,
    133        1.59     soren 	    "3Com Corporation",
    134   1.120.2.7   nathanw 	    "3Com 3CRWE62092A Wireless LAN",	}
    135   1.120.2.7   nathanw 	,
    136        1.59     soren 	{
    137   1.120.2.6   nathanw 	    PCMCIA_VENDOR_ADAPTEC, PCMCIA_PRODUCT_ADAPTEC_APA1460,
    138   1.120.2.6   nathanw 	    PCMCIA_CIS_ADAPTEC_APA1460,
    139        1.30      marc 	    0,
    140   1.120.2.6   nathanw 	    "Adaptec Corporation",
    141   1.120.2.7   nathanw 	    "Adaptec APA-1460 SlimSCSI",	}
    142   1.120.2.7   nathanw 	,
    143        1.45      tron 	{
    144   1.120.2.6   nathanw 	    PCMCIA_VENDOR_ADAPTEC, PCMCIA_PRODUCT_ADAPTEC_APA1460A,
    145   1.120.2.6   nathanw 	    PCMCIA_CIS_ADAPTEC_APA1460A,
    146        1.45      tron 	    0,
    147   1.120.2.6   nathanw 	    "Adaptec Corporation",
    148   1.120.2.7   nathanw 	    "Adaptec APA-1460A SlimSCSI",	}
    149   1.120.2.7   nathanw 	,
    150        1.52   thorpej 	{
    151   1.120.2.6   nathanw 	    PCMCIA_VENDOR_AIRONET, PCMCIA_PRODUCT_AIRONET_PC4500,
    152   1.120.2.6   nathanw 	    PCMCIA_CIS_AIRONET_PC4500,
    153        1.52   thorpej 	    0,
    154   1.120.2.6   nathanw 	    "Aironet Wireless Communications",
    155   1.120.2.7   nathanw 	    "Aironet PC4500 Wireless LAN Adapter",	}
    156   1.120.2.7   nathanw 	,
    157        1.26   thorpej 	{
    158   1.120.2.6   nathanw 	    PCMCIA_VENDOR_AIRONET, PCMCIA_PRODUCT_AIRONET_PC4800,
    159   1.120.2.6   nathanw 	    PCMCIA_CIS_AIRONET_PC4800,
    160   1.120.2.3   nathanw 	    0,
    161   1.120.2.6   nathanw 	    "Aironet Wireless Communications",
    162   1.120.2.7   nathanw 	    "Aironet PC4800 Wireless LAN Adapter",	}
    163   1.120.2.7   nathanw 	,
    164   1.120.2.3   nathanw 	{
    165   1.120.2.6   nathanw 	    PCMCIA_VENDOR_AIRONET, PCMCIA_PRODUCT_AIRONET_350,
    166   1.120.2.6   nathanw 	    PCMCIA_CIS_AIRONET_350,
    167        1.90  gmcgarry 	    0,
    168   1.120.2.6   nathanw 	    "Aironet Wireless Communications",
    169   1.120.2.7   nathanw 	    "Aironet 350 Wireless LAN Adapter",	}
    170   1.120.2.7   nathanw 	,
    171   1.120.2.6   nathanw 	{
    172   1.120.2.6   nathanw 	    PCMCIA_VENDOR_ALLIEDTELESIS, PCMCIA_PRODUCT_ALLIEDTELESIS_LA_PCM,
    173   1.120.2.6   nathanw 	    PCMCIA_CIS_ALLIEDTELESIS_LA_PCM,
    174   1.120.2.6   nathanw 	    0,
    175   1.120.2.6   nathanw 	    "Allied Telesis K.K.",
    176   1.120.2.7   nathanw 	    "Allied Telesis LA-PCM",	}
    177   1.120.2.7   nathanw 	,
    178   1.120.2.6   nathanw 	{
    179   1.120.2.8   nathanw 	    PCMCIA_VENDOR_ARCHOS, PCMCIA_PRODUCT_ARCHOS_ARC_ATAPI,
    180   1.120.2.8   nathanw 	    PCMCIA_CIS_ARCHOS_ARC_ATAPI,
    181   1.120.2.8   nathanw 	    0,
    182   1.120.2.8   nathanw 	    "Archos",
    183   1.120.2.8   nathanw 	    "MiniCD",	}
    184   1.120.2.8   nathanw 	,
    185   1.120.2.8   nathanw 	{
    186   1.120.2.6   nathanw 	    PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_STACK_650,
    187   1.120.2.6   nathanw 	    PCMCIA_CIS_BAY_STACK_650,
    188   1.120.2.6   nathanw 	    0,
    189   1.120.2.6   nathanw 	    "Bay Networks",
    190   1.120.2.7   nathanw 	    "BayStack 650 Wireless LAN",	}
    191   1.120.2.7   nathanw 	,
    192   1.120.2.6   nathanw 	{
    193   1.120.2.6   nathanw 	    PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_SURFER_PRO,
    194   1.120.2.6   nathanw 	    PCMCIA_CIS_BAY_SURFER_PRO,
    195   1.120.2.6   nathanw 	    0,
    196   1.120.2.6   nathanw 	    "Bay Networks",
    197   1.120.2.7   nathanw 	    "AirSurfer Pro Wireless LAN",	}
    198   1.120.2.7   nathanw 	,
    199   1.120.2.6   nathanw 	{
    200   1.120.2.6   nathanw 	    PCMCIA_VENDOR_BAY, PCMCIA_PRODUCT_BAY_STACK_660,
    201   1.120.2.6   nathanw 	    PCMCIA_CIS_BAY_STACK_660,
    202   1.120.2.6   nathanw 	    0,
    203   1.120.2.6   nathanw 	    "Bay Networks",
    204   1.120.2.7   nathanw 	    "BayStack 660 Wireless LAN",	}
    205   1.120.2.7   nathanw 	,
    206   1.120.2.6   nathanw 	{
    207   1.120.2.8   nathanw 	    PCMCIA_VENDOR_BREEZECOM, PCMCIA_PRODUCT_BREEZECOM_BREEZENET,
    208   1.120.2.8   nathanw 	    PCMCIA_CIS_BREEZECOM_BREEZENET,
    209   1.120.2.8   nathanw 	    0,
    210   1.120.2.8   nathanw 	    "BreezeCOM",
    211   1.120.2.8   nathanw 	    "BreezeCOM BreezeNET",	}
    212   1.120.2.8   nathanw 	,
    213   1.120.2.8   nathanw 	{
    214   1.120.2.6   nathanw 	    PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_WLI_PCM_S11,
    215   1.120.2.6   nathanw 	    PCMCIA_CIS_BUFFALO_WLI_PCM_S11,
    216   1.120.2.6   nathanw 	    0,
    217   1.120.2.6   nathanw 	    "BUFFALO (Melco Corporation)",
    218   1.120.2.7   nathanw 	    "BUFFALO AirStation 11Mbps WLAN",	}
    219   1.120.2.7   nathanw 	,
    220       1.115    ichiro 	{
    221   1.120.2.8   nathanw 	    PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_WLI_CF_S11G,
    222   1.120.2.8   nathanw 	    PCMCIA_CIS_BUFFALO_WLI_CF_S11G,
    223   1.120.2.8   nathanw 	    0,
    224   1.120.2.8   nathanw 	    "BUFFALO (Melco Corporation)",
    225   1.120.2.8   nathanw 	    "BUFFALO AirStation 11Mbps CF WLAN",	}
    226   1.120.2.8   nathanw 	,
    227   1.120.2.8   nathanw 	{
    228       1.115    ichiro 	    PCMCIA_VENDOR_COMPAQ, PCMCIA_PRODUCT_COMPAQ_NC5004,
    229       1.115    ichiro 	    PCMCIA_CIS_COMPAQ_NC5004,
    230       1.115    ichiro 	    0,
    231       1.115    ichiro 	    "Compaq",
    232   1.120.2.7   nathanw 	    "Compaq Agency NC5004 Wireless Card",	}
    233   1.120.2.7   nathanw 	,
    234        1.90  gmcgarry 	{
    235   1.120.2.6   nathanw 	    PCMCIA_VENDOR_COMPAQ2, PCMCIA_PRODUCT_COMPAQ2_CPQ_10_100,
    236   1.120.2.6   nathanw 	    PCMCIA_CIS_COMPAQ2_CPQ_10_100,
    237   1.120.2.6   nathanw 	    0,
    238   1.120.2.6   nathanw 	    "Compaq",
    239   1.120.2.7   nathanw 	    "Compaq Netelligent 10/100 Ethernet",	}
    240   1.120.2.7   nathanw 	,
    241   1.120.2.6   nathanw 	{
    242   1.120.2.8   nathanw 	    PCMCIA_VENDOR_COMPEX, PCMCIA_PRODUCT_COMPEX_AMP_WIRELESS,
    243   1.120.2.8   nathanw 	    PCMCIA_CIS_COMPEX_AMP_WIRELESS,
    244   1.120.2.8   nathanw 	    0,
    245   1.120.2.8   nathanw 	    "Compex Corporation",
    246   1.120.2.8   nathanw 	    "AMP",	}
    247   1.120.2.8   nathanw 	,
    248   1.120.2.8   nathanw 	{
    249        1.26   thorpej 	    PCMCIA_VENDOR_COMPEX, PCMCIA_PRODUCT_COMPEX_LINKPORT_ENET_B,
    250        1.26   thorpej 	    PCMCIA_CIS_COMPEX_LINKPORT_ENET_B,
    251        1.26   thorpej 	    0,
    252        1.27   thorpej 	    "Compex Corporation",
    253   1.120.2.7   nathanw 	    "Compex Linkport ENET-B Ethernet",	}
    254   1.120.2.7   nathanw 	,
    255        1.40       mjl 	{
    256   1.120.2.6   nathanw 	    PCMCIA_VENDOR_CONTEC, PCMCIA_PRODUCT_CONTEC_CNETPC,
    257   1.120.2.6   nathanw 	    PCMCIA_CIS_CONTEC_CNETPC,
    258        1.40       mjl 	    0,
    259   1.120.2.6   nathanw 	    "Contec",
    260   1.120.2.7   nathanw 	    "Contec C-NET(PC)C",	}
    261   1.120.2.7   nathanw 	,
    262   1.120.2.6   nathanw 	{
    263   1.120.2.6   nathanw 	    PCMCIA_VENDOR_CONTEC, PCMCIA_PRODUCT_CONTEC_FX_DS110_PCC,
    264   1.120.2.6   nathanw 	    PCMCIA_CIS_CONTEC_FX_DS110_PCC,
    265   1.120.2.6   nathanw 	    0,
    266   1.120.2.6   nathanw 	    "Contec",
    267   1.120.2.7   nathanw 	    "Contec FLEXLAN/FX-DS110-PCC",	}
    268   1.120.2.7   nathanw 	,
    269         1.1  christos 	{
    270        1.17       dbj 	    PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_1,
    271        1.17       dbj 	    PCMCIA_CIS_DAYNA_COMMUNICARD_E_1,
    272        1.17       dbj 	    0,
    273        1.17       dbj 	    "Dayna Corporation",
    274   1.120.2.7   nathanw 	    "Dayna CommuniCard E",	}
    275   1.120.2.7   nathanw 	,
    276        1.17       dbj 	{
    277        1.17       dbj 	    PCMCIA_VENDOR_DAYNA, PCMCIA_PRODUCT_DAYNA_COMMUNICARD_E_2,
    278        1.17       dbj 	    PCMCIA_CIS_DAYNA_COMMUNICARD_E_2,
    279         1.1  christos 	    0,
    280         1.1  christos 	    "Dayna Corporation",
    281   1.120.2.7   nathanw 	    "Dayna CommuniCard E",	}
    282   1.120.2.7   nathanw 	,
    283         1.1  christos 	{
    284        1.16      kenh 	    PCMCIA_VENDOR_DIGITAL, PCMCIA_PRODUCT_DIGITAL_MOBILE_MEDIA_CDROM,
    285        1.16      kenh 	    PCMCIA_CIS_DIGITAL_MOBILE_MEDIA_CDROM,
    286        1.16      kenh 	    0,
    287        1.16      kenh 	    "Digital Equipment Corporation",
    288   1.120.2.7   nathanw 	    "Digital Mobile Media CD-ROM",	}
    289   1.120.2.7   nathanw 	,
    290        1.16      kenh 	{
    291       1.119   thorpej 	    PCMCIA_VENDOR_DLINK_2, PCMCIA_PRODUCT_DLINK_2_DMF560TX,
    292       1.119   thorpej 	    PCMCIA_CIS_DLINK_2_DMF560TX,
    293       1.119   thorpej 	    0,
    294       1.119   thorpej 	    "D-Link",
    295   1.120.2.7   nathanw 	    "D-Link DMF-650TX",	}
    296   1.120.2.7   nathanw 	,
    297       1.119   thorpej 	{
    298   1.120.2.8   nathanw 	    PCMCIA_VENDOR_DUAL, PCMCIA_PRODUCT_DUAL_NE2000,
    299   1.120.2.8   nathanw 	    PCMCIA_CIS_DUAL_NE2000,
    300   1.120.2.8   nathanw 	    0,
    301   1.120.2.8   nathanw 	    "Dual",
    302   1.120.2.8   nathanw 	    "Dual NE2000",	}
    303   1.120.2.8   nathanw 	,
    304   1.120.2.8   nathanw 	{
    305   1.120.2.9   nathanw 	    PCMCIA_VENDOR_EDIMAX, PCMCIA_PRODUCT_EDIMAX_EP4000A,
    306   1.120.2.9   nathanw 	    PCMCIA_CIS_EDIMAX_EP4000A,
    307   1.120.2.9   nathanw 	    0,
    308   1.120.2.9   nathanw 	    "Edimax Technology Inc.",
    309   1.120.2.9   nathanw 	    "Edimax EP4000A",	}
    310   1.120.2.9   nathanw 	,
    311   1.120.2.9   nathanw 	{
    312       1.100   hubertf 	    PCMCIA_VENDOR_ELSA, PCMCIA_PRODUCT_ELSA_MC2_IEEE,
    313       1.100   hubertf 	    PCMCIA_CIS_ELSA_MC2_IEEE,
    314       1.100   hubertf 	    0,
    315       1.100   hubertf 	    "Elsa",
    316   1.120.2.7   nathanw 	    "AirLancer MC-2 IEEE",	}
    317   1.120.2.7   nathanw 	,
    318       1.100   hubertf 	{
    319       1.100   hubertf 	    PCMCIA_VENDOR_ELSA, PCMCIA_PRODUCT_ELSA_XI300_IEEE,
    320       1.100   hubertf 	    PCMCIA_CIS_ELSA_XI300_IEEE,
    321       1.100   hubertf 	    0,
    322       1.100   hubertf 	    "Elsa",
    323   1.120.2.7   nathanw 	    "XI300 Wireless LAN",	}
    324   1.120.2.7   nathanw 	,
    325   1.120.2.7   nathanw 	{
    326   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ELSA, PCMCIA_PRODUCT_ELSA_XI800_IEEE,
    327   1.120.2.7   nathanw 	    PCMCIA_CIS_ELSA_XI800_IEEE,
    328   1.120.2.7   nathanw 	    0,
    329   1.120.2.7   nathanw 	    "Elsa",
    330   1.120.2.7   nathanw 	    "XI800 CF Wireless LAN",	}
    331   1.120.2.7   nathanw 	,
    332       1.100   hubertf 	{
    333   1.120.2.6   nathanw 	    PCMCIA_VENDOR_EMTAC, PCMCIA_PRODUCT_EMTAC_WLAN,
    334   1.120.2.6   nathanw 	    PCMCIA_CIS_EMTAC_WLAN,
    335        1.34   nathanw 	    0,
    336   1.120.2.6   nathanw 	    "EMTAC Technology Corporation",
    337   1.120.2.7   nathanw 	    "EMTAC A2424i 11Mbps WLAN Card",	}
    338   1.120.2.7   nathanw 	,
    339        1.34   nathanw 	{
    340   1.120.2.9   nathanw 	    PCMCIA_VENDOR_ERICSSON, PCMCIA_PRODUCT_ERICSSON_WIRELESSLAN,
    341   1.120.2.9   nathanw 	    PCMCIA_CIS_ERICSSON_WIRELESSLAN,
    342   1.120.2.9   nathanw 	    0,
    343   1.120.2.9   nathanw 	    "Ericsson",
    344   1.120.2.9   nathanw 	    "DSSS Wireless LAN PC Card",	}
    345   1.120.2.9   nathanw 	,
    346   1.120.2.9   nathanw 	{
    347   1.120.2.6   nathanw 	    PCMCIA_VENDOR_FARALLON, PCMCIA_PRODUCT_FARALLON_SKYLINE,
    348   1.120.2.6   nathanw 	    PCMCIA_CIS_FARALLON_SKYLINE,
    349         1.1  christos 	    0,
    350   1.120.2.6   nathanw 	    "Farallon Communications",
    351   1.120.2.7   nathanw 	    "SkyLINE Wireless",	}
    352   1.120.2.7   nathanw 	,
    353         1.1  christos 	{
    354   1.120.2.6   nathanw 	    PCMCIA_VENDOR_FUJITSU, PCMCIA_PRODUCT_FUJITSU_SCSI600,
    355   1.120.2.6   nathanw 	    PCMCIA_CIS_FUJITSU_SCSI600,
    356         1.1  christos 	    0,
    357   1.120.2.6   nathanw 	    "Fujitsu Corporation",
    358   1.120.2.7   nathanw 	    "Fujitsu SCSI 600 Interface",	}
    359   1.120.2.7   nathanw 	,
    360        1.37   thorpej 	{
    361   1.120.2.6   nathanw 	    PCMCIA_VENDOR_FUJITSU, PCMCIA_PRODUCT_FUJITSU_LA10S,
    362   1.120.2.6   nathanw 	    PCMCIA_CIS_FUJITSU_LA10S,
    363       1.110       imp 	    0,
    364   1.120.2.6   nathanw 	    "Fujitsu Corporation",
    365   1.120.2.7   nathanw 	    "Fujitsu Compact Flash Ethernet",	}
    366   1.120.2.7   nathanw 	,
    367       1.110       imp 	{
    368        1.37   thorpej 	    PCMCIA_VENDOR_FUJITSU, PCMCIA_PRODUCT_FUJITSU_LA501,
    369        1.37   thorpej 	    PCMCIA_CIS_FUJITSU_LA501,
    370        1.37   thorpej 	    0,
    371        1.37   thorpej 	    "Fujitsu Corporation",
    372   1.120.2.7   nathanw 	    "Fujitsu Towa LA501 Ethernet",	}
    373   1.120.2.7   nathanw 	,
    374        1.53        is 	{
    375       1.102  drochner 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_MICRODRIVE,
    376       1.102  drochner 	    PCMCIA_CIS_IBM_MICRODRIVE,
    377       1.102  drochner 	    0,
    378       1.102  drochner 	    "IBM Corporation",
    379   1.120.2.7   nathanw 	    "IBM Microdrive",	}
    380   1.120.2.7   nathanw 	,
    381         1.1  christos 	{
    382        1.60     soren 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_3270,
    383        1.60     soren 	    PCMCIA_CIS_IBM_3270,
    384        1.60     soren 	    0,
    385        1.60     soren 	    "IBM Corporation",
    386   1.120.2.7   nathanw 	    "IBM 3270 Emulation",	}
    387   1.120.2.7   nathanw 	,
    388        1.60     soren 	{
    389         1.1  christos 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_INFOMOVER,
    390         1.1  christos 	    PCMCIA_CIS_IBM_INFOMOVER,
    391         1.1  christos 	    0,
    392         1.1  christos 	    "IBM Corporation",
    393   1.120.2.7   nathanw 	    "IBM InfoMover",	}
    394   1.120.2.7   nathanw 	,
    395         1.1  christos 	{
    396        1.60     soren 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_5250,
    397        1.60     soren 	    PCMCIA_CIS_IBM_5250,
    398        1.60     soren 	    0,
    399        1.60     soren 	    "IBM Corporation",
    400   1.120.2.7   nathanw 	    "IBM 5250 Emulation",	}
    401   1.120.2.7   nathanw 	,
    402        1.60     soren 	{
    403        1.59     soren 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_TROPIC,
    404        1.59     soren 	    PCMCIA_CIS_IBM_TROPIC,
    405        1.59     soren 	    0,
    406        1.59     soren 	    "IBM Corporation",
    407   1.120.2.7   nathanw 	    "IBM Token Ring 4/16",	}
    408   1.120.2.7   nathanw 	,
    409        1.92     soren 	{
    410   1.120.2.8   nathanw 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_SCSI,
    411   1.120.2.8   nathanw 	    PCMCIA_CIS_IBM_SCSI,
    412   1.120.2.8   nathanw 	    0,
    413   1.120.2.8   nathanw 	    "IBM Corporation",
    414   1.120.2.8   nathanw 	    "IBM SCSI PCMCIA",	}
    415   1.120.2.8   nathanw 	,
    416   1.120.2.8   nathanw 	{
    417        1.92     soren 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_PORTABLE_CDROM,
    418        1.92     soren 	    PCMCIA_CIS_IBM_PORTABLE_CDROM,
    419        1.92     soren 	    0,
    420        1.92     soren 	    "IBM Corporation",
    421   1.120.2.7   nathanw 	    "IBM PCMCIA Portable CD-ROM Drive",	}
    422   1.120.2.7   nathanw 	,
    423        1.59     soren 	{
    424         1.1  christos 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_HOME_AND_AWAY,
    425         1.1  christos 	    PCMCIA_CIS_IBM_HOME_AND_AWAY,
    426         1.1  christos 	    0,
    427         1.1  christos 	    "IBM Corporation",
    428   1.120.2.7   nathanw 	    "IBM Home and Away Modem",	}
    429   1.120.2.7   nathanw 	,
    430         1.1  christos 	{
    431        1.29   nathanw 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_WIRELESS_LAN_ENTRY,
    432        1.29   nathanw 	    PCMCIA_CIS_IBM_WIRELESS_LAN_ENTRY,
    433        1.29   nathanw 	    0,
    434        1.29   nathanw 	    "IBM Corporation",
    435   1.120.2.7   nathanw 	    "IBM Wireless LAN Entry",	}
    436   1.120.2.7   nathanw 	,
    437        1.44       cgd 	{
    438   1.120.2.8   nathanw 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_SMART_CAPTURE_II,
    439   1.120.2.8   nathanw 	    PCMCIA_CIS_IBM_SMART_CAPTURE_II,
    440   1.120.2.8   nathanw 	    0,
    441   1.120.2.8   nathanw 	    "IBM Corporation",
    442   1.120.2.8   nathanw 	    "IBM Smart Capture Card II",	}
    443   1.120.2.8   nathanw 	,
    444   1.120.2.8   nathanw 	{
    445        1.60     soren 	    PCMCIA_VENDOR_IBM, PCMCIA_PRODUCT_IBM_ETHERJET,
    446        1.60     soren 	    PCMCIA_CIS_IBM_ETHERJET,
    447        1.44       cgd 	    0,
    448        1.44       cgd 	    "IBM Corporation",
    449   1.120.2.7   nathanw 	    "IBM EtherJet Ethernet",	}
    450   1.120.2.7   nathanw 	,
    451        1.36       abs 	{
    452   1.120.2.6   nathanw 	    PCMCIA_VENDOR_INTEL, PCMCIA_PRODUCT_INTEL_PRO_WLAN_2011,
    453   1.120.2.6   nathanw 	    PCMCIA_CIS_INTEL_PRO_WLAN_2011,
    454        1.90  gmcgarry 	    0,
    455        1.90  gmcgarry 	    "Intel",
    456   1.120.2.7   nathanw 	    "Intel PRO/Wireless 2011 LAN PC Card",	}
    457   1.120.2.7   nathanw 	,
    458        1.90  gmcgarry 	{
    459   1.120.2.6   nathanw 	    PCMCIA_VENDOR_INTEL, PCMCIA_PRODUCT_INTEL_EEPRO100,
    460   1.120.2.6   nathanw 	    PCMCIA_CIS_INTEL_EEPRO100,
    461   1.120.2.2   nathanw 	    0,
    462   1.120.2.2   nathanw 	    "Intel",
    463   1.120.2.7   nathanw 	    "Intel EtherExpress PRO/100",	}
    464   1.120.2.7   nathanw 	,
    465   1.120.2.2   nathanw 	{
    466        1.57     enami 	    PCMCIA_VENDOR_IODATA, PCMCIA_PRODUCT_IODATA_PCLATE,
    467        1.57     enami 	    PCMCIA_CIS_IODATA_PCLATE,
    468         1.1  christos 	    0,
    469         1.1  christos 	    "I-O DATA",
    470   1.120.2.7   nathanw 	    "I-O DATA PCLA/TE",	}
    471   1.120.2.7   nathanw 	,
    472         1.1  christos 	{
    473   1.120.2.1   nathanw 	    PCMCIA_VENDOR_IODATA2, PCMCIA_PRODUCT_IODATA2_WNB11PCM,
    474   1.120.2.1   nathanw 	    PCMCIA_CIS_IODATA2_WNB11PCM,
    475   1.120.2.1   nathanw 	    0,
    476   1.120.2.1   nathanw 	    "I-O DATA",
    477   1.120.2.7   nathanw 	    "I-O DATA WN-B11/PCM",	}
    478   1.120.2.7   nathanw 	,
    479   1.120.2.1   nathanw 	{
    480   1.120.2.6   nathanw 	    PCMCIA_VENDOR_KINGSTON, PCMCIA_PRODUCT_KINGSTON_KNE2,
    481   1.120.2.6   nathanw 	    PCMCIA_CIS_KINGSTON_KNE2,
    482        1.91      onoe 	    0,
    483   1.120.2.6   nathanw 	    "Kingston",
    484   1.120.2.7   nathanw 	    "Kingston KNE-PC2 Ethernet",	}
    485   1.120.2.7   nathanw 	,
    486   1.120.2.6   nathanw 	{
    487   1.120.2.6   nathanw 	    PCMCIA_VENDOR_LASAT, PCMCIA_PRODUCT_LASAT_CREDIT_288,
    488   1.120.2.6   nathanw 	    PCMCIA_CIS_LASAT_CREDIT_288,
    489   1.120.2.6   nathanw 	    0,
    490   1.120.2.6   nathanw 	    "Lasat Communications A/S",
    491   1.120.2.7   nathanw 	    "Lasat Credit 288 Modem",	}
    492   1.120.2.7   nathanw 	,
    493        1.91      onoe 	{
    494       1.101     soren 	    PCMCIA_VENDOR_LEXARMEDIA, PCMCIA_PRODUCT_LEXARMEDIA_COMPACTFLASH,
    495       1.101     soren 	    PCMCIA_CIS_LEXARMEDIA_COMPACTFLASH,
    496        1.73     soren 	    0,
    497        1.73     soren 	    "Lexar Media",
    498   1.120.2.7   nathanw 	    "Lexar Media CompactFlash",	}
    499   1.120.2.7   nathanw 	,
    500        1.74   thorpej 	{
    501   1.120.2.6   nathanw 	    PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_TRUST_COMBO_ECARD,
    502   1.120.2.6   nathanw 	    PCMCIA_CIS_LINKSYS_TRUST_COMBO_ECARD,
    503   1.120.2.6   nathanw 	    0,
    504   1.120.2.6   nathanw 	    "Linksys Corporation",
    505   1.120.2.7   nathanw 	    "Trust (Linksys) Combo EthernetCard",	}
    506   1.120.2.7   nathanw 	,
    507   1.120.2.6   nathanw 	{
    508        1.74   thorpej 	    PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ETHERFAST,
    509        1.74   thorpej 	    PCMCIA_CIS_LINKSYS_ETHERFAST,
    510        1.74   thorpej 	    0,
    511        1.74   thorpej 	    "Linksys Corporation",
    512   1.120.2.7   nathanw 	    "Linksys Etherfast 10/100 Ethernet",	}
    513   1.120.2.7   nathanw 	,
    514        1.73     soren 	{
    515        1.19       jtk 	    PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_ECARD_1,
    516        1.19       jtk 	    PCMCIA_CIS_LINKSYS_ECARD_1,
    517         1.1  christos 	    0,
    518         1.1  christos 	    "Linksys Corporation",
    519   1.120.2.7   nathanw 	    "Linksys EthernetCard or D-Link DE-650",	}
    520   1.120.2.7   nathanw 	,
    521         1.1  christos 	{
    522         1.1  christos 	    PCMCIA_VENDOR_LINKSYS, PCMCIA_PRODUCT_LINKSYS_COMBO_ECARD,
    523         1.1  christos 	    PCMCIA_CIS_LINKSYS_COMBO_ECARD,
    524         1.1  christos 	    0,
    525         1.1  christos 	    "Linksys Corporation",
    526   1.120.2.7   nathanw 	    "Linksys Combo EthernetCard",	}
    527   1.120.2.7   nathanw 	,
    528         1.9   thorpej 	{
    529   1.120.2.8   nathanw 	    PCMCIA_VENDOR_LINKSYS2, PCMCIA_PRODUCT_LINKSYS2_IWN,
    530   1.120.2.8   nathanw 	    PCMCIA_CIS_LINKSYS2_IWN,
    531   1.120.2.8   nathanw 	    0,
    532   1.120.2.8   nathanw 	    "The Linksys Group",
    533   1.120.2.8   nathanw 	    "Instant Wireless Network PC Card",	}
    534  1.120.2.11   nathanw 	,
    535  1.120.2.11   nathanw 	{
    536  1.120.2.11   nathanw 	    PCMCIA_VENDOR_LINKSYS2, PCMCIA_PRODUCT_LINKSYS2_IWN3,
    537  1.120.2.11   nathanw 	    PCMCIA_CIS_LINKSYS2_IWN3,
    538  1.120.2.11   nathanw 	    0,
    539  1.120.2.11   nathanw 	    "The Linksys Group",
    540  1.120.2.11   nathanw 	    "Instant Wireless Network PC Card, Versin 3",	}
    541   1.120.2.8   nathanw 	,
    542   1.120.2.8   nathanw 	{
    543   1.120.2.6   nathanw 	    PCMCIA_VENDOR_LUCENT, PCMCIA_PRODUCT_LUCENT_WAVELAN_IEEE,
    544   1.120.2.6   nathanw 	    PCMCIA_CIS_LUCENT_WAVELAN_IEEE,
    545         1.9   thorpej 	    0,
    546   1.120.2.6   nathanw 	    "Lucent Technologies",
    547   1.120.2.7   nathanw 	    "WaveLAN/IEEE",	}
    548   1.120.2.7   nathanw 	,
    549   1.120.2.6   nathanw 	{
    550   1.120.2.6   nathanw 	    PCMCIA_VENDOR_MACNICA, PCMCIA_PRODUCT_MACNICA_ME1_JEIDA,
    551   1.120.2.6   nathanw 	    PCMCIA_CIS_MACNICA_ME1_JEIDA,
    552   1.120.2.6   nathanw 	    0,
    553   1.120.2.6   nathanw 	    "MACNICA",
    554   1.120.2.7   nathanw 	    "MACNICA ME1 for JEIDA",	}
    555   1.120.2.7   nathanw 	,
    556   1.120.2.6   nathanw 	{
    557   1.120.2.6   nathanw 	    PCMCIA_VENDOR_MEGAHERTZ, PCMCIA_PRODUCT_MEGAHERTZ_XJEM3336,
    558   1.120.2.6   nathanw 	    PCMCIA_CIS_MEGAHERTZ_XJEM3336,
    559   1.120.2.6   nathanw 	    0,
    560   1.120.2.6   nathanw 	    "Megahertz Corporation",
    561   1.120.2.7   nathanw 	    "Megahertz X-JACK Ethernet Modem",	}
    562   1.120.2.7   nathanw 	,
    563         1.1  christos 	{
    564         1.1  christos 	    PCMCIA_VENDOR_MEGAHERTZ, PCMCIA_PRODUCT_MEGAHERTZ_XJ4288,
    565         1.1  christos 	    PCMCIA_CIS_MEGAHERTZ_XJ4288,
    566         1.1  christos 	    0,
    567         1.1  christos 	    "Megahertz Corporation",
    568   1.120.2.7   nathanw 	    "Megahertz XJ4288 Modem",	}
    569   1.120.2.7   nathanw 	,
    570        1.59     soren 	{
    571        1.59     soren 	    PCMCIA_VENDOR_MEGAHERTZ, PCMCIA_PRODUCT_MEGAHERTZ_XJ4336,
    572        1.59     soren 	    PCMCIA_CIS_MEGAHERTZ_XJ4336,
    573        1.59     soren 	    0,
    574        1.59     soren 	    "Megahertz Corporation",
    575   1.120.2.7   nathanw 	    "Megahertz XJ4336 Modem",	}
    576   1.120.2.7   nathanw 	,
    577        1.20   thorpej 	{
    578        1.20   thorpej 	    PCMCIA_VENDOR_MEGAHERTZ, PCMCIA_PRODUCT_MEGAHERTZ_XJ5560,
    579        1.20   thorpej 	    PCMCIA_CIS_MEGAHERTZ_XJ5560,
    580        1.20   thorpej 	    0,
    581        1.20   thorpej 	    "Megahertz Corporation",
    582   1.120.2.7   nathanw 	    "Megahertz X-JACK 56kbps Modem",	}
    583   1.120.2.7   nathanw 	,
    584         1.1  christos 	{
    585   1.120.2.8   nathanw 	    PCMCIA_VENDOR_MEGAHERTZ2, PCMCIA_PRODUCT_MEGAHERTZ2_XJEM1144,
    586   1.120.2.8   nathanw 	    PCMCIA_CIS_MEGAHERTZ2_XJEM1144,
    587   1.120.2.8   nathanw 	    0,
    588   1.120.2.8   nathanw 	    "Megahertz Corporation",
    589   1.120.2.8   nathanw 	    "Megahertz X-JACK",	}
    590   1.120.2.8   nathanw 	,
    591   1.120.2.8   nathanw 	{
    592         1.1  christos 	    PCMCIA_VENDOR_MEGAHERTZ2, PCMCIA_PRODUCT_MEGAHERTZ2_XJACK,
    593         1.1  christos 	    PCMCIA_CIS_MEGAHERTZ2_XJACK,
    594         1.1  christos 	    0,
    595         1.1  christos 	    "Megahertz Corporation",
    596   1.120.2.7   nathanw 	    "Megahertz X-JACK Ethernet",	}
    597   1.120.2.7   nathanw 	,
    598        1.36       abs 	{
    599        1.78     enami 	    PCMCIA_VENDOR_MELCO, PCMCIA_PRODUCT_MELCO_LPC3_TX,
    600        1.78     enami 	    PCMCIA_CIS_MELCO_LPC3_TX,
    601        1.78     enami 	    0,
    602        1.78     enami 	    "Melco Corporation",
    603   1.120.2.7   nathanw 	    "Melco LPC3-TX",	}
    604   1.120.2.7   nathanw 	,
    605        1.78     enami 	{
    606   1.120.2.6   nathanw 	    PCMCIA_VENDOR_MOTOROLA, PCMCIA_PRODUCT_MOTOROLA_POWER144,
    607   1.120.2.6   nathanw 	    PCMCIA_CIS_MOTOROLA_POWER144,
    608   1.120.2.2   nathanw 	    0,
    609   1.120.2.6   nathanw 	    "Motorola Corporation",
    610   1.120.2.7   nathanw 	    "Motorola Power 14.4 Modem",	}
    611   1.120.2.7   nathanw 	,
    612   1.120.2.2   nathanw 	{
    613   1.120.2.6   nathanw 	    PCMCIA_VENDOR_MOTOROLA, PCMCIA_PRODUCT_MOTOROLA_PM100C,
    614   1.120.2.6   nathanw 	    PCMCIA_CIS_MOTOROLA_PM100C,
    615        1.84   mycroft 	    0,
    616   1.120.2.6   nathanw 	    "Motorola Corporation",
    617   1.120.2.7   nathanw 	    "Motorola Personal Messenger 100C CDPD Modem",	}
    618   1.120.2.7   nathanw 	,
    619   1.120.2.6   nathanw 	{
    620   1.120.2.8   nathanw 	    PCMCIA_VENDOR_MOTOROLA, PCMCIA_PRODUCT_MOTOROLA_MONTANA_336,
    621   1.120.2.8   nathanw 	    PCMCIA_CIS_MOTOROLA_MONTANA_336,
    622   1.120.2.8   nathanw 	    0,
    623   1.120.2.8   nathanw 	    "Motorola Corporation",
    624   1.120.2.8   nathanw 	    "Motorola Montana 33.6",	}
    625   1.120.2.8   nathanw 	,
    626   1.120.2.8   nathanw 	{
    627   1.120.2.6   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_BASICS,
    628   1.120.2.6   nathanw 	    PCMCIA_CIS_NEWMEDIA_BASICS,
    629   1.120.2.6   nathanw 	    0,
    630   1.120.2.6   nathanw 	    "New Media Corporation",
    631   1.120.2.7   nathanw 	    "New Media BASICS Ethernet",	}
    632   1.120.2.7   nathanw 	,
    633   1.120.2.6   nathanw 	{
    634   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_LANSURFER,
    635   1.120.2.8   nathanw 	    PCMCIA_CIS_NEWMEDIA_LANSURFER,
    636   1.120.2.8   nathanw 	    0,
    637   1.120.2.8   nathanw 	    "New Media Corporation",
    638   1.120.2.8   nathanw 	    "NewMedia LANSurfer",	}
    639   1.120.2.8   nathanw 	,
    640   1.120.2.8   nathanw 	{
    641   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_LIVEWIRE,
    642   1.120.2.8   nathanw 	    PCMCIA_CIS_NEWMEDIA_LIVEWIRE,
    643   1.120.2.8   nathanw 	    0,
    644   1.120.2.8   nathanw 	    "New Media Corporation",
    645   1.120.2.8   nathanw 	    "NewMedia LiveWire Ethernet LAN Adapter",	}
    646   1.120.2.8   nathanw 	,
    647   1.120.2.8   nathanw 	{
    648   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_MULTIMEDIA,
    649   1.120.2.8   nathanw 	    PCMCIA_CIS_NEWMEDIA_MULTIMEDIA,
    650   1.120.2.8   nathanw 	    0,
    651   1.120.2.8   nathanw 	    "New Media Corporation",
    652   1.120.2.8   nathanw 	    "NewMedia Multimedia",	}
    653   1.120.2.8   nathanw 	,
    654   1.120.2.8   nathanw 	{
    655   1.120.2.6   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_BUSTOASTER,
    656   1.120.2.6   nathanw 	    PCMCIA_CIS_NEWMEDIA_BUSTOASTER,
    657   1.120.2.6   nathanw 	    0,
    658   1.120.2.6   nathanw 	    "New Media Corporation",
    659   1.120.2.7   nathanw 	    "New Media BusToaster SCSI Host Adapter",	}
    660   1.120.2.7   nathanw 	,
    661   1.120.2.6   nathanw 	{
    662   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA, PCMCIA_PRODUCT_NEWMEDIA_WAVJAMMER,
    663   1.120.2.8   nathanw 	    PCMCIA_CIS_NEWMEDIA_WAVJAMMER,
    664   1.120.2.8   nathanw 	    0,
    665   1.120.2.8   nathanw 	    "New Media Corporation",
    666   1.120.2.8   nathanw 	    "NewMedia .WAVjammer",	}
    667   1.120.2.8   nathanw 	,
    668   1.120.2.8   nathanw 	{
    669   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA2, PCMCIA_PRODUCT_NEWMEDIA2_BUSTOASTER,
    670   1.120.2.8   nathanw 	    PCMCIA_CIS_NEWMEDIA2_BUSTOASTER,
    671   1.120.2.8   nathanw 	    0,
    672   1.120.2.8   nathanw 	    "NewMedia",
    673   1.120.2.8   nathanw 	    "NewMedia BusToaster",	}
    674   1.120.2.8   nathanw 	,
    675   1.120.2.8   nathanw 	{
    676   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NETGEAR, PCMCIA_PRODUCT_NETGEAR_FA410TXC,
    677   1.120.2.8   nathanw 	    PCMCIA_CIS_NETGEAR_FA410TXC,
    678   1.120.2.8   nathanw 	    0,
    679   1.120.2.8   nathanw 	    "Netgear",
    680   1.120.2.8   nathanw 	    "Netgear FA410TXC",	}
    681   1.120.2.8   nathanw 	,
    682   1.120.2.8   nathanw 	{
    683   1.120.2.6   nathanw 	    PCMCIA_VENDOR_NI, PCMCIA_PRODUCT_NI_PCMCIA_GPIB,
    684   1.120.2.6   nathanw 	    PCMCIA_CIS_NI_PCMCIA_GPIB,
    685   1.120.2.6   nathanw 	    0,
    686   1.120.2.6   nathanw 	    "National Instruments",
    687   1.120.2.7   nathanw 	    "National Instruments PCMCIA-GPIB",	}
    688   1.120.2.7   nathanw 	,
    689   1.120.2.6   nathanw 	{
    690   1.120.2.6   nathanw 	    PCMCIA_VENDOR_NOKIA, PCMCIA_PRODUCT_NOKIA_C020_WLAN,
    691   1.120.2.6   nathanw 	    PCMCIA_CIS_NOKIA_C020_WLAN,
    692   1.120.2.6   nathanw 	    0,
    693   1.120.2.6   nathanw 	    "Nokia Communications",
    694   1.120.2.7   nathanw 	    "Nokia C020 WLAN Card",	}
    695   1.120.2.7   nathanw 	,
    696        1.84   mycroft 	{
    697        1.91      onoe 	    PCMCIA_VENDOR_OLICOM, PCMCIA_PRODUCT_OLICOM_TR,
    698        1.91      onoe 	    PCMCIA_CIS_OLICOM_TR,
    699        1.91      onoe 	    0,
    700        1.91      onoe 	    "Olicom",
    701   1.120.2.7   nathanw 	    "GoCard Token Ring 16/4",	}
    702   1.120.2.7   nathanw 	,
    703        1.91      onoe 	{
    704        1.82   mycroft 	    PCMCIA_VENDOR_PANASONIC, PCMCIA_PRODUCT_PANASONIC_KXLC002,
    705        1.82   mycroft 	    PCMCIA_CIS_PANASONIC_KXLC002,
    706        1.82   mycroft 	    0,
    707        1.82   mycroft 	    "Matsushita Electric Industrial Co.",
    708   1.120.2.7   nathanw 	    "Panasonic 4X CD-ROM Interface Card",	}
    709   1.120.2.7   nathanw 	,
    710        1.88      joda 	{
    711        1.88      joda 	    PCMCIA_VENDOR_PANASONIC, PCMCIA_PRODUCT_PANASONIC_KXLC003,
    712        1.88      joda 	    PCMCIA_CIS_PANASONIC_KXLC003,
    713        1.88      joda 	    0,
    714        1.88      joda 	    "Matsushita Electric Industrial Co.",
    715   1.120.2.7   nathanw 	    "Panasonic 8X CD-ROM Interface Card",	}
    716   1.120.2.7   nathanw 	,
    717        1.82   mycroft 	{
    718   1.120.2.6   nathanw 	    PCMCIA_VENDOR_PANASONIC, PCMCIA_PRODUCT_PANASONIC_KXLC005,
    719   1.120.2.6   nathanw 	    PCMCIA_CIS_PANASONIC_KXLC005,
    720   1.120.2.6   nathanw 	    0,
    721   1.120.2.6   nathanw 	    "Matsushita Electric Industrial Co.",
    722   1.120.2.7   nathanw 	    "Panasonic 16X CD-ROM Interface Card",	}
    723   1.120.2.7   nathanw 	,
    724   1.120.2.6   nathanw 	{
    725   1.120.2.8   nathanw 	    PCMCIA_VENDOR_PANASONIC, PCMCIA_PRODUCT_PANASONIC_KME,
    726   1.120.2.8   nathanw 	    PCMCIA_CIS_PANASONIC_KME,
    727   1.120.2.8   nathanw 	    0,
    728   1.120.2.8   nathanw 	    "Matsushita Electric Industrial Co.",
    729   1.120.2.8   nathanw 	    "Panasonic CD-R/RW Interface",	}
    730   1.120.2.8   nathanw 	,
    731   1.120.2.8   nathanw 	{
    732   1.120.2.8   nathanw 	    PCMCIA_VENDOR_PROXIM, PCMCIA_PRODUCT_PROXIM_ROAMABOUT_2400FH,
    733   1.120.2.8   nathanw 	    PCMCIA_CIS_PROXIM_ROAMABOUT_2400FH,
    734   1.120.2.8   nathanw 	    0,
    735   1.120.2.8   nathanw 	    "Proxim",
    736   1.120.2.8   nathanw 	    "Digital RoamAbout 2400FH",	}
    737   1.120.2.8   nathanw 	,
    738   1.120.2.8   nathanw 	{
    739   1.120.2.8   nathanw 	    PCMCIA_VENDOR_PROXIM, PCMCIA_PRODUCT_PROXIM_RANGELAN2_7401,
    740   1.120.2.8   nathanw 	    PCMCIA_CIS_PROXIM_RANGELAN2_7401,
    741   1.120.2.8   nathanw 	    0,
    742   1.120.2.8   nathanw 	    "Proxim",
    743   1.120.2.8   nathanw 	    "Proxim RangeLAN2 7401",	}
    744   1.120.2.8   nathanw 	,
    745   1.120.2.8   nathanw 	{
    746   1.120.2.3   nathanw 	    PCMCIA_VENDOR_PSION, PCMCIA_PRODUCT_PSION_GOLDCARD,
    747   1.120.2.3   nathanw 	    PCMCIA_CIS_PSION_GOLDCARD,
    748   1.120.2.3   nathanw 	    0,
    749   1.120.2.3   nathanw 	    "Psion",
    750   1.120.2.7   nathanw 	    "Psion Gold Card",	}
    751   1.120.2.7   nathanw 	,
    752   1.120.2.3   nathanw 	{
    753   1.120.2.8   nathanw 	    PCMCIA_VENDOR_QUATECH, PCMCIA_PRODUCT_QUATECH_DSP_225,
    754   1.120.2.8   nathanw 	    PCMCIA_CIS_QUATECH_DSP_225,
    755   1.120.2.8   nathanw 	    0,
    756   1.120.2.8   nathanw 	    "Quatech",
    757   1.120.2.8   nathanw 	    "Quatech Dual Serial Port",	}
    758   1.120.2.8   nathanw 	,
    759   1.120.2.8   nathanw 	{
    760   1.120.2.6   nathanw 	    PCMCIA_VENDOR_RATOC, PCMCIA_PRODUCT_RATOC_REX_R280,
    761   1.120.2.6   nathanw 	    PCMCIA_CIS_RATOC_REX_R280,
    762         1.1  christos 	    0,
    763   1.120.2.6   nathanw 	    "RATOC System Inc.",
    764   1.120.2.7   nathanw 	    "RATOC REX-R280",	}
    765   1.120.2.7   nathanw 	,
    766   1.120.2.6   nathanw 	{
    767   1.120.2.6   nathanw 	    PCMCIA_VENDOR_RAYTHEON, PCMCIA_PRODUCT_RAYTHEON_WLAN,
    768   1.120.2.6   nathanw 	    PCMCIA_CIS_RAYTHEON_WLAN,
    769   1.120.2.6   nathanw 	    0,
    770   1.120.2.6   nathanw 	    "Raytheon",
    771   1.120.2.7   nathanw 	    "WLAN Adapter",	}
    772   1.120.2.7   nathanw 	,
    773   1.120.2.6   nathanw 	{
    774   1.120.2.6   nathanw 	    PCMCIA_VENDOR_ROLAND, PCMCIA_PRODUCT_ROLAND_SCP55,
    775   1.120.2.6   nathanw 	    PCMCIA_CIS_ROLAND_SCP55,
    776   1.120.2.6   nathanw 	    0,
    777   1.120.2.6   nathanw 	    "Roland",
    778   1.120.2.7   nathanw 	    "Roland SCP-55",	}
    779   1.120.2.7   nathanw 	,
    780   1.120.2.6   nathanw 	{
    781   1.120.2.6   nathanw 	    PCMCIA_VENDOR_SAMSUNG, PCMCIA_PRODUCT_SAMSUNG_SWL_2000N,
    782   1.120.2.6   nathanw 	    PCMCIA_CIS_SAMSUNG_SWL_2000N,
    783   1.120.2.6   nathanw 	    0,
    784   1.120.2.6   nathanw 	    "Samsung",
    785   1.120.2.7   nathanw 	    "Samsung MagicLAN SWL-2000N",	}
    786   1.120.2.7   nathanw 	,
    787         1.1  christos 	{
    788        1.16      kenh 	    PCMCIA_VENDOR_SANDISK, PCMCIA_PRODUCT_SANDISK_SDCFB,
    789        1.16      kenh 	    PCMCIA_CIS_SANDISK_SDCFB,
    790        1.16      kenh 	    0,
    791        1.16      kenh 	    "Sandisk Corporation",
    792   1.120.2.7   nathanw 	    "Sandisk CompactFlash Card",	}
    793   1.120.2.7   nathanw 	,
    794        1.16      kenh 	{
    795         1.5   thorpej 	    PCMCIA_VENDOR_SIMPLETECH, PCMCIA_PRODUCT_SIMPLETECH_COMMUNICATOR288,
    796         1.5   thorpej 	    PCMCIA_CIS_SIMPLETECH_COMMUNICATOR288,
    797         1.5   thorpej 	    0,
    798         1.5   thorpej 	    "Simple Technology",
    799   1.120.2.7   nathanw 	    "Simple Technology 28.8 Communicator",	}
    800   1.120.2.7   nathanw 	,
    801         1.5   thorpej 	{
    802        1.42  sommerfe 	    PCMCIA_VENDOR_SIMPLETECH, PCMCIA_PRODUCT_SIMPLETECH_SPECTRUM24,
    803        1.42  sommerfe 	    PCMCIA_CIS_SIMPLETECH_SPECTRUM24,
    804        1.42  sommerfe 	    0,
    805        1.42  sommerfe 	    "Simple Technology",
    806   1.120.2.7   nathanw 	    "Symbol Spectrum24 WLAN Adapter",	}
    807   1.120.2.7   nathanw 	,
    808        1.42  sommerfe 	{
    809   1.120.2.6   nathanw 	    PCMCIA_VENDOR_SMC, PCMCIA_PRODUCT_SMC_8016,
    810   1.120.2.6   nathanw 	    PCMCIA_CIS_SMC_8016,
    811   1.120.2.6   nathanw 	    0,
    812   1.120.2.6   nathanw 	    "Standard Microsystems Corporation",
    813   1.120.2.7   nathanw 	    "SMC 8016 EtherCard",	}
    814   1.120.2.7   nathanw 	,
    815   1.120.2.6   nathanw 	{
    816   1.120.2.6   nathanw 	    PCMCIA_VENDOR_SMC, PCMCIA_PRODUCT_SMC_EZCARD,
    817   1.120.2.6   nathanw 	    PCMCIA_CIS_SMC_EZCARD,
    818   1.120.2.6   nathanw 	    0,
    819   1.120.2.6   nathanw 	    "Standard Microsystems Corporation",
    820   1.120.2.7   nathanw 	    "SMC EZCard 10 PCMCIA",	}
    821   1.120.2.7   nathanw 	,
    822   1.120.2.6   nathanw 	{
    823   1.120.2.2   nathanw 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_EA_ETHER,
    824   1.120.2.2   nathanw 	    PCMCIA_CIS_SOCKET_EA_ETHER,
    825   1.120.2.2   nathanw 	    0,
    826   1.120.2.2   nathanw 	    "Socket Communications",
    827   1.120.2.7   nathanw 	    "Socket Communications EA",	}
    828   1.120.2.7   nathanw 	,
    829   1.120.2.2   nathanw 	{
    830   1.120.2.8   nathanw 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_WLAN_CF,
    831   1.120.2.8   nathanw 	    PCMCIA_CIS_SOCKET_LP_WLAN_CF,
    832   1.120.2.8   nathanw 	    0,
    833   1.120.2.8   nathanw 	    "Socket Communications",
    834   1.120.2.8   nathanw 	    "Socket Communications Low Power WLAN Card",	}
    835   1.120.2.8   nathanw 	,
    836   1.120.2.8   nathanw 	{
    837         1.1  christos 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_PAGECARD,
    838         1.1  christos 	    PCMCIA_CIS_SOCKET_PAGECARD,
    839         1.1  christos 	    0,
    840         1.1  christos 	    "Socket Communications",
    841   1.120.2.7   nathanw 	    "Socket Communications PageCard",	}
    842   1.120.2.7   nathanw 	,
    843         1.1  christos 	{
    844        1.13   thorpej 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_DUAL_RS232,
    845        1.13   thorpej 	    PCMCIA_CIS_SOCKET_DUAL_RS232,
    846        1.13   thorpej 	    0,
    847        1.13   thorpej 	    "Socket Communications",
    848   1.120.2.7   nathanw 	    "Socket Communications Dual RS232",	}
    849   1.120.2.7   nathanw 	,
    850        1.55       jun 	{
    851   1.120.2.6   nathanw 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_ETHER,
    852   1.120.2.6   nathanw 	    PCMCIA_CIS_SOCKET_LP_ETHER,
    853   1.120.2.6   nathanw 	    0,
    854   1.120.2.6   nathanw 	    "Socket Communications",
    855   1.120.2.7   nathanw 	    "Socket Communications LP-E",	}
    856   1.120.2.7   nathanw 	,
    857   1.120.2.6   nathanw 	{
    858        1.99    toddpw 	    PCMCIA_VENDOR_SOCKET, PCMCIA_PRODUCT_SOCKET_LP_ETHER_CF,
    859        1.99    toddpw 	    PCMCIA_CIS_SOCKET_LP_ETHER_CF,
    860        1.55       jun 	    0,
    861        1.99    toddpw 	    "Socket Communications",
    862   1.120.2.7   nathanw 	    "Socket Communications LP-E CF",	}
    863   1.120.2.7   nathanw 	,
    864        1.99    toddpw 	{
    865   1.120.2.6   nathanw 	    PCMCIA_VENDOR_SYMBOL, PCMCIA_PRODUCT_SYMBOL_LA4100,
    866   1.120.2.6   nathanw 	    PCMCIA_CIS_SYMBOL_LA4100,
    867        1.99    toddpw 	    0,
    868   1.120.2.6   nathanw 	    "Symbol",
    869   1.120.2.7   nathanw 	    "Symbol Spectrum24 LA4100 Series WLAN",	}
    870   1.120.2.7   nathanw 	,
    871   1.120.2.6   nathanw 	{
    872   1.120.2.6   nathanw 	    PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_LAK_CD011WL,
    873   1.120.2.6   nathanw 	    PCMCIA_CIS_TDK_LAK_CD011WL,
    874   1.120.2.6   nathanw 	    0,
    875   1.120.2.6   nathanw 	    "TDK Corporation",
    876   1.120.2.7   nathanw 	    "TDK LAK-CD011WL",	}
    877   1.120.2.7   nathanw 	,
    878        1.13   thorpej 	{
    879         1.1  christos 	    PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_LAK_CD021BX,
    880         1.1  christos 	    PCMCIA_CIS_TDK_LAK_CD021BX,
    881         1.1  christos 	    0,
    882         1.1  christos 	    "TDK Corporation",
    883   1.120.2.7   nathanw 	    "TDK LAK-CD021BX Ethernet",	}
    884   1.120.2.7   nathanw 	,
    885         1.1  christos 	{
    886   1.120.2.6   nathanw 	    PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_LAK_CF010,
    887   1.120.2.6   nathanw 	    PCMCIA_CIS_TDK_LAK_CF010,
    888   1.120.2.6   nathanw 	    0,
    889   1.120.2.6   nathanw 	    "TDK Corporation",
    890   1.120.2.7   nathanw 	    "TDK LAC-CF010",	}
    891  1.120.2.10   nathanw 	,
    892  1.120.2.10   nathanw 	{
    893  1.120.2.10   nathanw 	    PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_C6500012,
    894  1.120.2.10   nathanw 	    PCMCIA_CIS_TDK_C6500012,
    895  1.120.2.10   nathanw 	    0,
    896  1.120.2.10   nathanw 	    "TDK Corporation",
    897  1.120.2.10   nathanw 	    "TDK ELSA MicroLink MC all",	}
    898   1.120.2.7   nathanw 	,
    899   1.120.2.6   nathanw 	{
    900         1.1  christos 	    PCMCIA_VENDOR_TDK, PCMCIA_PRODUCT_TDK_DFL9610,
    901         1.1  christos 	    PCMCIA_CIS_TDK_DFL9610,
    902         1.1  christos 	    0,
    903         1.1  christos 	    "TDK Corporation",
    904   1.120.2.7   nathanw 	    "TDK DFL9610 Ethernet & Digital Cellular",	}
    905   1.120.2.7   nathanw 	,
    906        1.61       jun 	{
    907   1.120.2.6   nathanw 	    PCMCIA_VENDOR_TELECOMDEVICE, PCMCIA_PRODUCT_TELECOMDEVICE_TCD_HPC100,
    908   1.120.2.6   nathanw 	    PCMCIA_CIS_TELECOMDEVICE_TCD_HPC100,
    909        1.61       jun 	    0,
    910   1.120.2.6   nathanw 	    "Telecom Device",
    911   1.120.2.7   nathanw 	    "Telecom Device TCD-HPC100",	}
    912   1.120.2.7   nathanw 	,
    913        1.22   thorpej 	{
    914   1.120.2.6   nathanw 	    PCMCIA_VENDOR_USROBOTICS, PCMCIA_PRODUCT_USROBOTICS_WORLDPORT144,
    915   1.120.2.6   nathanw 	    PCMCIA_CIS_USROBOTICS_WORLDPORT144,
    916       1.117    ichiro 	    0,
    917   1.120.2.6   nathanw 	    "US Robotics Corporation",
    918   1.120.2.7   nathanw 	    "US Robotics WorldPort 14.4 Modem",	}
    919   1.120.2.7   nathanw 	,
    920       1.117    ichiro 	{
    921        1.90  gmcgarry 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CE,
    922        1.90  gmcgarry 	    PCMCIA_CIS_XIRCOM_CE,
    923        1.28   nathanw 	    0,
    924        1.90  gmcgarry 	    "Xircom",
    925   1.120.2.7   nathanw 	    "Xircom CreditCard Ethernet",	}
    926   1.120.2.7   nathanw 	,
    927        1.29   nathanw 	{
    928   1.120.2.8   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CE3,
    929   1.120.2.8   nathanw 	    PCMCIA_CIS_XIRCOM_CE3,
    930        1.29   nathanw 	    0,
    931        1.90  gmcgarry 	    "Xircom",
    932   1.120.2.8   nathanw 	    "Xircom CreditCard 10/100 Ethernet",	}
    933   1.120.2.7   nathanw 	,
    934        1.90  gmcgarry 	{
    935   1.120.2.8   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CE2,
    936   1.120.2.8   nathanw 	    PCMCIA_CIS_XIRCOM_CE2,
    937        1.90  gmcgarry 	    0,
    938        1.90  gmcgarry 	    "Xircom",
    939   1.120.2.8   nathanw 	    "Xircom CreditCard Ethernet II",	}
    940   1.120.2.7   nathanw 	,
    941   1.120.2.7   nathanw 	{
    942   1.120.2.7   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_XE2000,
    943   1.120.2.7   nathanw 	    PCMCIA_CIS_XIRCOM_XE2000,
    944   1.120.2.7   nathanw 	    0,
    945   1.120.2.7   nathanw 	    "Xircom",
    946   1.120.2.7   nathanw 	    "Xircom XE2000 10/100 Ethernet",	}
    947   1.120.2.7   nathanw 	,
    948       1.113   thorpej 	{
    949   1.120.2.6   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CNW_801,
    950   1.120.2.6   nathanw 	    PCMCIA_CIS_XIRCOM_CNW_801,
    951   1.120.2.6   nathanw 	    0,
    952   1.120.2.6   nathanw 	    "Xircom",
    953   1.120.2.7   nathanw 	    "Xircom CreditCard Netwave (Canada)",	}
    954   1.120.2.7   nathanw 	,
    955   1.120.2.6   nathanw 	{
    956   1.120.2.6   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CNW_802,
    957   1.120.2.6   nathanw 	    PCMCIA_CIS_XIRCOM_CNW_802,
    958   1.120.2.6   nathanw 	    0,
    959   1.120.2.6   nathanw 	    "Xircom",
    960   1.120.2.7   nathanw 	    "Xircom CreditCard Netwave (US)",	}
    961   1.120.2.7   nathanw 	,
    962   1.120.2.6   nathanw 	{
    963       1.113   thorpej 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CT2,
    964       1.113   thorpej 	    PCMCIA_CIS_XIRCOM_CT2,
    965       1.113   thorpej 	    0,
    966       1.113   thorpej 	    "Xircom",
    967   1.120.2.7   nathanw 	    "Xircom CreditCard Token Ring II",	}
    968   1.120.2.7   nathanw 	,
    969        1.28   nathanw 	{
    970        1.90  gmcgarry 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CEM,
    971        1.90  gmcgarry 	    PCMCIA_CIS_XIRCOM_CEM,
    972        1.22   thorpej 	    0,
    973        1.90  gmcgarry 	    "Xircom",
    974   1.120.2.7   nathanw 	    "Xircom CreditCard Ethernet + Modem",	}
    975   1.120.2.7   nathanw 	,
    976        1.58       jtk 	{
    977   1.120.2.6   nathanw 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_REM56,
    978   1.120.2.6   nathanw 	    PCMCIA_CIS_XIRCOM_REM56,
    979   1.120.2.6   nathanw 	    0,
    980   1.120.2.6   nathanw 	    "Xircom",
    981   1.120.2.7   nathanw 	    "Xircom RealPort Ethernet 10/100 + Modem 56",	}
    982   1.120.2.7   nathanw 	,
    983   1.120.2.6   nathanw 	{
    984        1.90  gmcgarry 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CEM28,
    985        1.90  gmcgarry 	    PCMCIA_CIS_XIRCOM_CEM28,
    986        1.58       jtk 	    0,
    987        1.90  gmcgarry 	    "Xircom",
    988   1.120.2.7   nathanw 	    "Xircom CreditCard Ethernet + Modem 28",	}
    989   1.120.2.7   nathanw 	,
    990        1.95  gmcgarry 	{
    991        1.95  gmcgarry 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CEM33,
    992        1.95  gmcgarry 	    PCMCIA_CIS_XIRCOM_CEM33,
    993        1.95  gmcgarry 	    0,
    994        1.95  gmcgarry 	    "Xircom",
    995   1.120.2.7   nathanw 	    "Xircom CreditCard Ethernet + Modem 33",	}
    996   1.120.2.7   nathanw 	,
    997        1.95  gmcgarry 	{
    998        1.95  gmcgarry 	    PCMCIA_VENDOR_XIRCOM, PCMCIA_PRODUCT_XIRCOM_CEM56,
    999        1.95  gmcgarry 	    PCMCIA_CIS_XIRCOM_CEM56,
   1000        1.95  gmcgarry 	    0,
   1001        1.95  gmcgarry 	    "Xircom",
   1002   1.120.2.7   nathanw 	    "Xircom CreditCard Ethernet + Modem 56",	}
   1003   1.120.2.7   nathanw 	,
   1004        1.95  gmcgarry 	{
   1005   1.120.2.3   nathanw 	    PCMCIA_VENDOR_ZONET, PCMCIA_PRODUCT_ZONET_ZEN,
   1006   1.120.2.3   nathanw 	    PCMCIA_CIS_ZONET_ZEN,
   1007   1.120.2.3   nathanw 	    0,
   1008   1.120.2.3   nathanw 	    "Zonet Technology Inc.",
   1009   1.120.2.7   nathanw 	    "Zonet Zen 10/10",	}
   1010   1.120.2.7   nathanw 	,
   1011   1.120.2.3   nathanw 	{
   1012         1.1  christos 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_ACCTON_EN2212,
   1013         1.1  christos 	    PCMCIA_CIS_ACCTON_EN2212,
   1014         1.1  christos 	    0,
   1015         1.4  christos 	    "ACCTON",
   1016   1.120.2.7   nathanw 	    "Accton EN2212",	}
   1017   1.120.2.7   nathanw 	,
   1018         1.1  christos 	{
   1019   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_AMBICOM_AMB8002T,
   1020   1.120.2.6   nathanw 	    PCMCIA_CIS_AMBICOM_AMB8002T,
   1021         1.1  christos 	    0,
   1022   1.120.2.6   nathanw 	    "AmbiCom Inc",
   1023   1.120.2.7   nathanw 	    "AmbiCom AMB8002T",	}
   1024   1.120.2.7   nathanw 	,
   1025         1.1  christos 	{
   1026   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_AMD_AM79C930,
   1027   1.120.2.6   nathanw 	    PCMCIA_CIS_AMD_AM79C930,
   1028         1.1  christos 	    0,
   1029   1.120.2.6   nathanw 	    "AMD",
   1030   1.120.2.7   nathanw 	    "AMD Am79C930",	}
   1031   1.120.2.7   nathanw 	,
   1032         1.1  christos 	{
   1033   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_BILLIONTON_LNT10TN,
   1034   1.120.2.6   nathanw 	    PCMCIA_CIS_BILLIONTON_LNT10TN,
   1035        1.16      kenh 	    0,
   1036   1.120.2.6   nathanw 	    "Billionton Systems Inc.",
   1037   1.120.2.7   nathanw 	    "Billionton Systems Inc. LNT-10TN NE2000 Compatible Card",	}
   1038   1.120.2.7   nathanw 	,
   1039        1.19       jtk 	{
   1040   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_CNET_NE2000,
   1041   1.120.2.6   nathanw 	    PCMCIA_CIS_CNET_NE2000,
   1042        1.19       jtk 	    0,
   1043   1.120.2.6   nathanw 	    "CNet",
   1044   1.120.2.7   nathanw 	    "CNet CN40BC NE2000 Compatible",	}
   1045   1.120.2.7   nathanw 	,
   1046        1.16      kenh 	{
   1047        1.49     enami 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_ETHER_PCC_T,
   1048        1.49     enami 	    PCMCIA_CIS_COREGA_ETHER_PCC_T,
   1049        1.49     enami 	    0,
   1050        1.49     enami 	    "Corega K.K.",
   1051   1.120.2.7   nathanw 	    "Corega Ether PCC-T",	}
   1052   1.120.2.7   nathanw 	,
   1053        1.49     enami 	{
   1054   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_ETHER_PCC_TD,
   1055   1.120.2.6   nathanw 	    PCMCIA_CIS_COREGA_ETHER_PCC_TD,
   1056   1.120.2.6   nathanw 	    0,
   1057   1.120.2.6   nathanw 	    "Corega K.K.",
   1058   1.120.2.7   nathanw 	    "Corega Ether PCC-TD",	}
   1059   1.120.2.7   nathanw 	,
   1060   1.120.2.6   nathanw 	{
   1061        1.49     enami 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_ETHER_II_PCC_T,
   1062        1.49     enami 	    PCMCIA_CIS_COREGA_ETHER_II_PCC_T,
   1063        1.54       jun 	    0,
   1064        1.54       jun 	    "Corega K.K.",
   1065   1.120.2.7   nathanw 	    "Corega EtherII PCC-T",	}
   1066   1.120.2.7   nathanw 	,
   1067        1.54       jun 	{
   1068        1.54       jun 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_FAST_ETHER_PCC_TX,
   1069        1.54       jun 	    PCMCIA_CIS_COREGA_FAST_ETHER_PCC_TX,
   1070        1.24   thorpej 	    0,
   1071        1.24   thorpej 	    "Corega K.K.",
   1072   1.120.2.7   nathanw 	    "Corega FastEther PCC-TX",	}
   1073   1.120.2.7   nathanw 	,
   1074        1.24   thorpej 	{
   1075   1.120.2.2   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_FETHER_PCC_TXD,
   1076   1.120.2.2   nathanw 	    PCMCIA_CIS_COREGA_FETHER_PCC_TXD,
   1077   1.120.2.2   nathanw 	    0,
   1078   1.120.2.2   nathanw 	    "Corega K.K.",
   1079   1.120.2.7   nathanw 	    "Corega FEther PCC-TXD",	}
   1080   1.120.2.7   nathanw 	,
   1081   1.120.2.2   nathanw 	{
   1082   1.120.2.2   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_FETHER_PCC_TXF,
   1083   1.120.2.2   nathanw 	    PCMCIA_CIS_COREGA_FETHER_PCC_TXF,
   1084   1.120.2.2   nathanw 	    0,
   1085   1.120.2.2   nathanw 	    "Corega K.K.",
   1086   1.120.2.7   nathanw 	    "Corega FEther PCC-TXF",	}
   1087   1.120.2.7   nathanw 	,
   1088   1.120.2.2   nathanw 	{
   1089        1.85    itojun 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_WIRELESS_LAN_PCC_11,
   1090        1.85    itojun 	    PCMCIA_CIS_COREGA_WIRELESS_LAN_PCC_11,
   1091        1.85    itojun 	    0,
   1092        1.85    itojun 	    "Corega K.K.",
   1093   1.120.2.7   nathanw 	    "Corega Wireless LAN PCC-11",	}
   1094   1.120.2.7   nathanw 	,
   1095        1.85    itojun 	{
   1096       1.117    ichiro 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_WIRELESS_LAN_PCCA_11,
   1097       1.117    ichiro 	    PCMCIA_CIS_COREGA_WIRELESS_LAN_PCCA_11,
   1098       1.117    ichiro 	    0,
   1099       1.117    ichiro 	    "Corega K.K.",
   1100   1.120.2.7   nathanw 	    "Corega Wireless LAN PCCA-11",	}
   1101   1.120.2.7   nathanw 	,
   1102       1.117    ichiro 	{
   1103   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_COREGA_WIRELESS_LAN_PCCB_11,
   1104   1.120.2.6   nathanw 	    PCMCIA_CIS_COREGA_WIRELESS_LAN_PCCB_11,
   1105        1.32      marc 	    0,
   1106   1.120.2.6   nathanw 	    "Corega K.K.",
   1107   1.120.2.7   nathanw 	    "Corega Wireless LAN PCCB-11",	}
   1108   1.120.2.7   nathanw 	,
   1109        1.71   mycroft 	{
   1110   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_DIGITAL_DEPCMXX,
   1111   1.120.2.6   nathanw 	    PCMCIA_CIS_DIGITAL_DEPCMXX,
   1112        1.71   mycroft 	    0,
   1113   1.120.2.6   nathanw 	    "Digital Equipment Corporation",
   1114   1.120.2.7   nathanw 	    "DEC DEPCM-BA",	}
   1115   1.120.2.7   nathanw 	,
   1116        1.34   nathanw 	{
   1117   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_DLINK_DE650,
   1118   1.120.2.6   nathanw 	    PCMCIA_CIS_DLINK_DE650,
   1119       1.110       imp 	    0,
   1120   1.120.2.6   nathanw 	    "D-Link",
   1121   1.120.2.7   nathanw 	    "D-Link DE-650",	}
   1122   1.120.2.7   nathanw 	,
   1123       1.110       imp 	{
   1124   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_DLINK_DE660,
   1125   1.120.2.6   nathanw 	    PCMCIA_CIS_DLINK_DE660,
   1126        1.48        is 	    0,
   1127   1.120.2.6   nathanw 	    "D-Link",
   1128   1.120.2.7   nathanw 	    "D-Link DE-660",	}
   1129   1.120.2.7   nathanw 	,
   1130        1.57     enami 	{
   1131   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_DLINK_DE660PLUS,
   1132   1.120.2.6   nathanw 	    PCMCIA_CIS_DLINK_DE660PLUS,
   1133        1.57     enami 	    0,
   1134   1.120.2.6   nathanw 	    "D-Link",
   1135   1.120.2.7   nathanw 	    "D-Link DE-660+",	}
   1136   1.120.2.7   nathanw 	,
   1137       1.106      haya 	{
   1138   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_EIGERLABS_EPX_AA2000,
   1139   1.120.2.6   nathanw 	    PCMCIA_CIS_EIGERLABS_EPX_AA2000,
   1140       1.106      haya 	    0,
   1141   1.120.2.6   nathanw 	    "Eiger labs,Inc.",
   1142   1.120.2.7   nathanw 	    "EPX-AA2000 PC Sound Card",	}
   1143   1.120.2.7   nathanw 	,
   1144        1.48        is 	{
   1145        1.63      danw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_EPSON_EEN10B,
   1146        1.63      danw 	    PCMCIA_CIS_EPSON_EEN10B,
   1147        1.63      danw 	    0,
   1148        1.63      danw 	    "Seiko Epson Corporation",
   1149   1.120.2.7   nathanw 	    "Epson EEN10B",	}
   1150   1.120.2.7   nathanw 	,
   1151        1.63      danw 	{
   1152        1.65  augustss 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_EXP_EXPMULTIMEDIA,
   1153        1.65  augustss 	    PCMCIA_CIS_EXP_EXPMULTIMEDIA,
   1154        1.65  augustss 	    0,
   1155        1.65  augustss 	    "EXP Computer Inc",
   1156   1.120.2.7   nathanw 	    "EXP IDE/ATAPI DVD Card",	}
   1157   1.120.2.7   nathanw 	,
   1158        1.65  augustss 	{
   1159   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_GEMTEK_WLAN,
   1160   1.120.2.6   nathanw 	    PCMCIA_CIS_GEMTEK_WLAN,
   1161        1.76     enami 	    0,
   1162   1.120.2.8   nathanw 	    "Gem Tek",
   1163   1.120.2.7   nathanw 	    "GEMTEK Prism2_5 WaveLAN Card",	}
   1164   1.120.2.7   nathanw 	,
   1165        1.76     enami 	{
   1166        1.77     enami 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_ICOM_SL200,
   1167        1.77     enami 	    PCMCIA_CIS_ICOM_SL200,
   1168        1.77     enami 	    0,
   1169        1.77     enami 	    "ICOM Inc",
   1170   1.120.2.7   nathanw 	    "Icom SL-200",	}
   1171   1.120.2.7   nathanw 	,
   1172        1.77     enami 	{
   1173   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_INTERSIL_PRISM2,
   1174   1.120.2.6   nathanw 	    PCMCIA_CIS_INTERSIL_PRISM2,
   1175        1.78     enami 	    0,
   1176   1.120.2.6   nathanw 	    "Intersil",
   1177   1.120.2.7   nathanw 	    "Intersil Prism II",	}
   1178   1.120.2.7   nathanw 	,
   1179        1.78     enami 	{
   1180   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_IODATA_CBIDE2,
   1181   1.120.2.6   nathanw 	    PCMCIA_CIS_IODATA_CBIDE2,
   1182        1.79       uch 	    0,
   1183   1.120.2.6   nathanw 	    "I-O DATA",
   1184   1.120.2.7   nathanw 	    "IO-DATA CBIDE2/16-bit mode",	}
   1185   1.120.2.7   nathanw 	,
   1186        1.87       scw 	{
   1187   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_IODATA_PCLAT,
   1188   1.120.2.6   nathanw 	    PCMCIA_CIS_IODATA_PCLAT,
   1189        1.87       scw 	    0,
   1190   1.120.2.6   nathanw 	    "I-O DATA",
   1191   1.120.2.7   nathanw 	    "IO-DATA PCLA/T",	}
   1192   1.120.2.7   nathanw 	,
   1193        1.79       uch 	{
   1194   1.120.2.9   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_LANTECH_FASTNETTX,
   1195   1.120.2.9   nathanw 	    PCMCIA_CIS_LANTECH_FASTNETTX,
   1196   1.120.2.9   nathanw 	    0,
   1197   1.120.2.9   nathanw 	    "Lantech Computer Company",
   1198   1.120.2.9   nathanw 	    "Lantech Fastnet/TX",	}
   1199   1.120.2.9   nathanw 	,
   1200   1.120.2.9   nathanw 	{
   1201   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_LINKSYS_ECARD_2,
   1202   1.120.2.6   nathanw 	    PCMCIA_CIS_LINKSYS_ECARD_2,
   1203        1.94      onoe 	    0,
   1204   1.120.2.6   nathanw 	    "Linksys Corporation",
   1205   1.120.2.7   nathanw 	    "Linksys E-Card",	}
   1206   1.120.2.7   nathanw 	,
   1207   1.120.2.6   nathanw 	{
   1208   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_MEGAHERTZ_XJ2288,
   1209   1.120.2.6   nathanw 	    PCMCIA_CIS_MEGAHERTZ_XJ2288,
   1210   1.120.2.6   nathanw 	    0,
   1211   1.120.2.6   nathanw 	    "Megahertz Corporation",
   1212   1.120.2.7   nathanw 	    "Megahertz XJ2288 Modem",	}
   1213   1.120.2.7   nathanw 	,
   1214        1.94      onoe 	{
   1215        1.98   msaitoh 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_MELCO_LPC2_TX,
   1216        1.98   msaitoh 	    PCMCIA_CIS_MELCO_LPC2_TX,
   1217        1.98   msaitoh 	    0,
   1218        1.98   msaitoh 	    "Melco Corporation",
   1219   1.120.2.7   nathanw 	    "Melco LPC2-TX",	}
   1220   1.120.2.7   nathanw 	,
   1221       1.103   thorpej 	{
   1222   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_NAKAGAWAMETAL_LNT10TN,
   1223   1.120.2.6   nathanw 	    PCMCIA_CIS_NAKAGAWAMETAL_LNT10TN,
   1224       1.103   thorpej 	    0,
   1225   1.120.2.6   nathanw 	    "NAKAGAWA METAL",
   1226   1.120.2.7   nathanw 	    "NAKAGAWA METAL LNT-10TN NE2000 Compatible Card",	}
   1227   1.120.2.7   nathanw 	,
   1228       1.108    ichiro 	{
   1229       1.108    ichiro 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_NANOSPEED_PRISM2,
   1230       1.108    ichiro 	    PCMCIA_CIS_NANOSPEED_PRISM2,
   1231       1.108    ichiro 	    0,
   1232       1.108    ichiro 	    "",
   1233   1.120.2.7   nathanw 	    "NANOSPEED ROOT-RZ2000 WLAN Card",	}
   1234   1.120.2.7   nathanw 	,
   1235       1.117    ichiro 	{
   1236   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_NDC_ND5100_E,
   1237   1.120.2.6   nathanw 	    PCMCIA_CIS_NDC_ND5100_E,
   1238   1.120.2.6   nathanw 	    0,
   1239   1.120.2.8   nathanw 	    "NDC",
   1240   1.120.2.7   nathanw 	    "Sohoware ND5100E NE2000 Compatible Card",	}
   1241   1.120.2.7   nathanw 	,
   1242   1.120.2.6   nathanw 	{
   1243       1.117    ichiro 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_NEC_CMZ_RT_WP,
   1244       1.117    ichiro 	    PCMCIA_CIS_NEC_CMZ_RT_WP,
   1245       1.117    ichiro 	    0,
   1246       1.117    ichiro 	    "",
   1247   1.120.2.7   nathanw 	    "NEC Wireless Card CMZ-RT-WP",	}
   1248   1.120.2.7   nathanw 	,
   1249       1.117    ichiro 	{
   1250       1.117    ichiro 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_NTT_ME_WLAN,
   1251       1.117    ichiro 	    PCMCIA_CIS_NTT_ME_WLAN,
   1252       1.117    ichiro 	    0,
   1253       1.117    ichiro 	    "",
   1254   1.120.2.7   nathanw 	    "NTT-ME 11Mbps Wireless LAN PC Card",	}
   1255   1.120.2.7   nathanw 	,
   1256        1.98   msaitoh 	{
   1257   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_PLANET_SMARTCOM2000,
   1258   1.120.2.6   nathanw 	    PCMCIA_CIS_PLANET_SMARTCOM2000,
   1259   1.120.2.6   nathanw 	    0,
   1260   1.120.2.6   nathanw 	    "Planet",
   1261   1.120.2.7   nathanw 	    "Planet SmartCOM 2000",	}
   1262   1.120.2.7   nathanw 	,
   1263   1.120.2.6   nathanw 	{
   1264   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_PLANEX_FNW3600T,
   1265   1.120.2.6   nathanw 	    PCMCIA_CIS_PLANEX_FNW3600T,
   1266   1.120.2.6   nathanw 	    0,
   1267   1.120.2.6   nathanw 	    "Planex Communications Inc",
   1268   1.120.2.7   nathanw 	    "Planex FNW-3600-T",	}
   1269   1.120.2.7   nathanw 	,
   1270   1.120.2.6   nathanw 	{
   1271   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_PLANEX_FNW3700T,
   1272   1.120.2.6   nathanw 	    PCMCIA_CIS_PLANEX_FNW3700T,
   1273   1.120.2.6   nathanw 	    0,
   1274   1.120.2.6   nathanw 	    "Planex Communications Inc",
   1275   1.120.2.7   nathanw 	    "Planex FNW-3700-T",	}
   1276   1.120.2.7   nathanw 	,
   1277   1.120.2.6   nathanw 	{
   1278   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_RPTI_EP400,
   1279   1.120.2.6   nathanw 	    PCMCIA_CIS_RPTI_EP400,
   1280   1.120.2.6   nathanw 	    0,
   1281   1.120.2.6   nathanw 	    "RPTI",
   1282   1.120.2.7   nathanw 	    "RPTI EP400",	}
   1283   1.120.2.7   nathanw 	,
   1284   1.120.2.6   nathanw 	{
   1285   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_RPTI_EP401,
   1286   1.120.2.6   nathanw 	    PCMCIA_CIS_RPTI_EP401,
   1287   1.120.2.6   nathanw 	    0,
   1288   1.120.2.6   nathanw 	    "RPTI",
   1289   1.120.2.7   nathanw 	    "RPTI EP401",	}
   1290   1.120.2.7   nathanw 	,
   1291   1.120.2.6   nathanw 	{
   1292   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_PREMAX_PE200,
   1293   1.120.2.6   nathanw 	    PCMCIA_CIS_PREMAX_PE200,
   1294   1.120.2.6   nathanw 	    0,
   1295   1.120.2.6   nathanw 	    "Premax",
   1296   1.120.2.7   nathanw 	    "PreMax PE-200",	}
   1297   1.120.2.7   nathanw 	,
   1298   1.120.2.6   nathanw 	{
   1299   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SIMPLETECH_SPECTRUM24_ALT,
   1300   1.120.2.8   nathanw 	    PCMCIA_CIS_SIMPLETECH_SPECTRUM24_ALT,
   1301   1.120.2.8   nathanw 	    0,
   1302   1.120.2.8   nathanw 	    "Simple Technology",
   1303   1.120.2.8   nathanw 	    "LA4111 Spectrum24 Wireless LAN PC Card",	}
   1304   1.120.2.8   nathanw 	,
   1305   1.120.2.8   nathanw 	{
   1306   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SMC_2632W,
   1307   1.120.2.6   nathanw 	    PCMCIA_CIS_SMC_2632W,
   1308   1.120.2.6   nathanw 	    0,
   1309   1.120.2.6   nathanw 	    "Standard Microsystems Corporation",
   1310   1.120.2.7   nathanw 	    "SMC 2632 EZ Connect Wireless PC Card",	}
   1311   1.120.2.7   nathanw 	,
   1312   1.120.2.6   nathanw 	{
   1313   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SVEC_COMBOCARD,
   1314   1.120.2.6   nathanw 	    PCMCIA_CIS_SVEC_COMBOCARD,
   1315   1.120.2.6   nathanw 	    0,
   1316   1.120.2.6   nathanw 	    "SVEC/Hawking Technology",
   1317   1.120.2.7   nathanw 	    "SVEC/Hawking Tech. Combo Card",	}
   1318   1.120.2.7   nathanw 	,
   1319   1.120.2.6   nathanw 	{
   1320   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SVEC_LANCARD,
   1321   1.120.2.6   nathanw 	    PCMCIA_CIS_SVEC_LANCARD,
   1322   1.120.2.6   nathanw 	    0,
   1323   1.120.2.6   nathanw 	    "SVEC/Hawking Technology",
   1324   1.120.2.7   nathanw 	    "SVEC PCMCIA Lan Card",	}
   1325   1.120.2.7   nathanw 	,
   1326   1.120.2.6   nathanw 	{
   1327   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SVEC_PN650TX,
   1328   1.120.2.6   nathanw 	    PCMCIA_CIS_SVEC_PN650TX,
   1329   1.120.2.6   nathanw 	    0,
   1330   1.120.2.6   nathanw 	    "SVEC/Hawking Technology",
   1331   1.120.2.7   nathanw 	    "SVEC PN650TX 10/100 Dual Speed Fast Ethernet PC Card",	}
   1332   1.120.2.7   nathanw 	,
   1333   1.120.2.6   nathanw 	{
   1334       1.120   aymeric 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_SYNERGY21_S21810,
   1335       1.120   aymeric 	    PCMCIA_CIS_SYNERGY21_S21810,
   1336       1.120   aymeric 	    0,
   1337       1.120   aymeric 	    "Synergy 21",
   1338   1.120.2.7   nathanw 	    "Synergy 21 S21810+ NE2000 Compatible Card",	}
   1339   1.120.2.7   nathanw 	,
   1340       1.120   aymeric 	{
   1341   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_TEAC_IDECARDII,
   1342   1.120.2.6   nathanw 	    PCMCIA_CIS_TEAC_IDECARDII,
   1343   1.120.2.3   nathanw 	    0,
   1344   1.120.2.6   nathanw 	    "TEAC",
   1345   1.120.2.7   nathanw 	    "TEAC IDE Card/II",	}
   1346   1.120.2.7   nathanw 	,
   1347   1.120.2.3   nathanw 	{
   1348   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_XIRCOM_CFE_10,
   1349   1.120.2.6   nathanw 	    PCMCIA_CIS_XIRCOM_CFE_10,
   1350   1.120.2.4   nathanw 	    0,
   1351   1.120.2.6   nathanw 	    "Xircom",
   1352   1.120.2.7   nathanw 	    "Xircom CompactCard CFE-10",	}
   1353   1.120.2.7   nathanw 	,
   1354   1.120.2.4   nathanw 	{
   1355   1.120.2.6   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_YEDATA_EXTERNAL_FDD,
   1356   1.120.2.6   nathanw 	    PCMCIA_CIS_YEDATA_EXTERNAL_FDD,
   1357   1.120.2.5   nathanw 	    0,
   1358   1.120.2.6   nathanw 	    "Y-E DATA",
   1359   1.120.2.7   nathanw 	    "Y-E DATA External FDD",	}
   1360   1.120.2.7   nathanw 	,
   1361   1.120.2.5   nathanw 	{
   1362   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_ZOOM_AIR_4000,
   1363   1.120.2.8   nathanw 	    PCMCIA_CIS_ZOOM_AIR_4000,
   1364   1.120.2.8   nathanw 	    0,
   1365   1.120.2.8   nathanw 	    "",
   1366   1.120.2.8   nathanw 	    "Zoom Air-4000",	}
   1367   1.120.2.8   nathanw 	,
   1368   1.120.2.8   nathanw 	{
   1369   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_FUJITSU_FMV_J181,
   1370   1.120.2.8   nathanw 	    PCMCIA_CIS_FUJITSU_FMV_J181,
   1371   1.120.2.8   nathanw 	    0,
   1372   1.120.2.8   nathanw 	    "Fujitsu Corporation",
   1373   1.120.2.8   nathanw 	    "FUJITSU FMV-J181 PCMCIA Card",	}
   1374   1.120.2.8   nathanw 	,
   1375   1.120.2.8   nathanw 	{
   1376   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_FUJITSU_FMV_J182,
   1377   1.120.2.8   nathanw 	    PCMCIA_CIS_FUJITSU_FMV_J182,
   1378   1.120.2.8   nathanw 	    0,
   1379   1.120.2.8   nathanw 	    "Fujitsu Corporation",
   1380   1.120.2.8   nathanw 	    "FUJITSU FMV-J182 PCMCIA Card",	}
   1381   1.120.2.8   nathanw 	,
   1382   1.120.2.8   nathanw 	{
   1383   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_FUJITSU_FMV_J182A,
   1384   1.120.2.8   nathanw 	    PCMCIA_CIS_FUJITSU_FMV_J182A,
   1385   1.120.2.8   nathanw 	    0,
   1386   1.120.2.8   nathanw 	    "Fujitsu Corporation",
   1387   1.120.2.8   nathanw 	    "FUJITSU FMV-J182A PCMCIA Card",	}
   1388   1.120.2.8   nathanw 	,
   1389   1.120.2.8   nathanw 	{
   1390   1.120.2.8   nathanw 	    PCMCIA_VENDOR_UNKNOWN, PCMCIA_PRODUCT_FUJITSU_ITCFJ182A,
   1391   1.120.2.8   nathanw 	    PCMCIA_CIS_FUJITSU_ITCFJ182A,
   1392   1.120.2.8   nathanw 	    0,
   1393   1.120.2.8   nathanw 	    "Fujitsu Corporation",
   1394   1.120.2.8   nathanw 	    "FUJITSU ITCFJ182A CompactCard",	}
   1395   1.120.2.8   nathanw 	,
   1396   1.120.2.8   nathanw 	{
   1397   1.120.2.7   nathanw 	    PCMCIA_VENDOR_FUJITSU,
   1398        1.34   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1399        1.34   nathanw 	    PCMCIA_CIS_INVALID,
   1400   1.120.2.7   nathanw 	    0,
   1401        1.34   nathanw 	    "Fujitsu Corporation",
   1402        1.82   mycroft 	    NULL,
   1403        1.82   mycroft 	},
   1404        1.82   mycroft 	{
   1405   1.120.2.7   nathanw 	    PCMCIA_VENDOR_PANASONIC,
   1406        1.82   mycroft 	    PCMCIA_KNOWNDEV_NOPROD,
   1407        1.82   mycroft 	    PCMCIA_CIS_INVALID,
   1408   1.120.2.7   nathanw 	    0,
   1409        1.82   mycroft 	    "Matsushita Electric Industrial Co.",
   1410        1.34   nathanw 	    NULL,
   1411        1.25   thorpej 	},
   1412        1.25   thorpej 	{
   1413   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SANDISK,
   1414        1.16      kenh 	    PCMCIA_KNOWNDEV_NOPROD,
   1415        1.16      kenh 	    PCMCIA_CIS_INVALID,
   1416   1.120.2.7   nathanw 	    0,
   1417        1.16      kenh 	    "Sandisk Corporation",
   1418        1.16      kenh 	    NULL,
   1419        1.16      kenh 	},
   1420        1.16      kenh 	{
   1421   1.120.2.7   nathanw 	    PCMCIA_VENDOR_NEWMEDIA,
   1422        1.12   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1423        1.12   thorpej 	    PCMCIA_CIS_INVALID,
   1424   1.120.2.7   nathanw 	    0,
   1425        1.43       hwr 	    "New Media Corporation",
   1426        1.12   thorpej 	    NULL,
   1427        1.12   thorpej 	},
   1428        1.12   thorpej 	{
   1429   1.120.2.7   nathanw 	    PCMCIA_VENDOR_INTEL,
   1430        1.66      joda 	    PCMCIA_KNOWNDEV_NOPROD,
   1431        1.66      joda 	    PCMCIA_CIS_INVALID,
   1432   1.120.2.7   nathanw 	    0,
   1433        1.66      joda 	    "Intel",
   1434        1.66      joda 	    NULL,
   1435        1.66      joda 	},
   1436        1.66      joda 	{
   1437   1.120.2.7   nathanw 	    PCMCIA_VENDOR_IBM,
   1438         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1439         1.1  christos 	    PCMCIA_CIS_INVALID,
   1440   1.120.2.7   nathanw 	    0,
   1441         1.1  christos 	    "IBM Corporation",
   1442         1.1  christos 	    NULL,
   1443         1.1  christos 	},
   1444         1.1  christos 	{
   1445   1.120.2.7   nathanw 	    PCMCIA_VENDOR_3COM,
   1446         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1447         1.1  christos 	    PCMCIA_CIS_INVALID,
   1448   1.120.2.7   nathanw 	    0,
   1449         1.1  christos 	    "3Com Corporation",
   1450         1.1  christos 	    NULL,
   1451         1.1  christos 	},
   1452         1.1  christos 	{
   1453   1.120.2.7   nathanw 	    PCMCIA_VENDOR_MEGAHERTZ,
   1454         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1455         1.1  christos 	    PCMCIA_CIS_INVALID,
   1456   1.120.2.7   nathanw 	    0,
   1457         1.1  christos 	    "Megahertz Corporation",
   1458         1.1  christos 	    NULL,
   1459         1.1  christos 	},
   1460         1.1  christos 	{
   1461   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SOCKET,
   1462         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1463         1.1  christos 	    PCMCIA_CIS_INVALID,
   1464   1.120.2.7   nathanw 	    0,
   1465         1.1  christos 	    "Socket Communications",
   1466         1.1  christos 	    NULL,
   1467         1.1  christos 	},
   1468         1.1  christos 	{
   1469   1.120.2.7   nathanw 	    PCMCIA_VENDOR_TDK,
   1470         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1471         1.1  christos 	    PCMCIA_CIS_INVALID,
   1472   1.120.2.7   nathanw 	    0,
   1473         1.1  christos 	    "TDK Corporation",
   1474         1.1  christos 	    NULL,
   1475         1.1  christos 	},
   1476         1.1  christos 	{
   1477   1.120.2.7   nathanw 	    PCMCIA_VENDOR_XIRCOM,
   1478        1.66      joda 	    PCMCIA_KNOWNDEV_NOPROD,
   1479        1.66      joda 	    PCMCIA_CIS_INVALID,
   1480   1.120.2.7   nathanw 	    0,
   1481        1.66      joda 	    "Xircom",
   1482        1.66      joda 	    NULL,
   1483        1.66      joda 	},
   1484        1.66      joda 	{
   1485   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SMC,
   1486        1.12   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1487        1.12   thorpej 	    PCMCIA_CIS_INVALID,
   1488   1.120.2.7   nathanw 	    0,
   1489        1.12   thorpej 	    "Standard Microsystems Corporation",
   1490        1.12   thorpej 	    NULL,
   1491        1.12   thorpej 	},
   1492        1.12   thorpej 	{
   1493   1.120.2.8   nathanw 	    PCMCIA_VENDOR_MOTOROLA,
   1494   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1495   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1496   1.120.2.8   nathanw 	    0,
   1497   1.120.2.8   nathanw 	    "Motorola Corporation",
   1498   1.120.2.8   nathanw 	    NULL,
   1499   1.120.2.8   nathanw 	},
   1500   1.120.2.8   nathanw 	{
   1501   1.120.2.7   nathanw 	    PCMCIA_VENDOR_NI,
   1502   1.120.2.2   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1503   1.120.2.2   nathanw 	    PCMCIA_CIS_INVALID,
   1504   1.120.2.7   nathanw 	    0,
   1505   1.120.2.2   nathanw 	    "National Instruments",
   1506   1.120.2.2   nathanw 	    NULL,
   1507   1.120.2.2   nathanw 	},
   1508   1.120.2.2   nathanw 	{
   1509   1.120.2.7   nathanw 	    PCMCIA_VENDOR_USROBOTICS,
   1510         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1511         1.1  christos 	    PCMCIA_CIS_INVALID,
   1512   1.120.2.7   nathanw 	    0,
   1513         1.1  christos 	    "US Robotics Corporation",
   1514         1.1  christos 	    NULL,
   1515         1.1  christos 	},
   1516         1.1  christos 	{
   1517   1.120.2.7   nathanw 	    PCMCIA_VENDOR_OLICOM,
   1518         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1519         1.1  christos 	    PCMCIA_CIS_INVALID,
   1520   1.120.2.7   nathanw 	    0,
   1521   1.120.2.6   nathanw 	    "Olicom",
   1522         1.1  christos 	    NULL,
   1523         1.1  christos 	},
   1524         1.1  christos 	{
   1525   1.120.2.8   nathanw 	    PCMCIA_VENDOR_PROXIM,
   1526   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1527   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1528   1.120.2.8   nathanw 	    0,
   1529   1.120.2.8   nathanw 	    "Proxim",
   1530   1.120.2.8   nathanw 	    NULL,
   1531   1.120.2.8   nathanw 	},
   1532   1.120.2.8   nathanw 	{
   1533   1.120.2.7   nathanw 	    PCMCIA_VENDOR_MEGAHERTZ2,
   1534        1.91      onoe 	    PCMCIA_KNOWNDEV_NOPROD,
   1535        1.91      onoe 	    PCMCIA_CIS_INVALID,
   1536   1.120.2.7   nathanw 	    0,
   1537   1.120.2.6   nathanw 	    "Megahertz Corporation",
   1538        1.91      onoe 	    NULL,
   1539        1.91      onoe 	},
   1540        1.91      onoe 	{
   1541   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ADAPTEC,
   1542         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1543         1.1  christos 	    PCMCIA_CIS_INVALID,
   1544   1.120.2.7   nathanw 	    0,
   1545         1.1  christos 	    "Adaptec Corporation",
   1546         1.1  christos 	    NULL,
   1547         1.1  christos 	},
   1548         1.1  christos 	{
   1549   1.120.2.8   nathanw 	    PCMCIA_VENDOR_QUATECH,
   1550   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1551   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1552   1.120.2.8   nathanw 	    0,
   1553   1.120.2.8   nathanw 	    "Quatech",
   1554   1.120.2.8   nathanw 	    NULL,
   1555   1.120.2.8   nathanw 	},
   1556   1.120.2.8   nathanw 	{
   1557   1.120.2.7   nathanw 	    PCMCIA_VENDOR_COMPAQ,
   1558        1.66      joda 	    PCMCIA_KNOWNDEV_NOPROD,
   1559        1.66      joda 	    PCMCIA_CIS_INVALID,
   1560   1.120.2.7   nathanw 	    0,
   1561        1.66      joda 	    "Compaq",
   1562        1.66      joda 	    NULL,
   1563        1.66      joda 	},
   1564        1.66      joda 	{
   1565   1.120.2.7   nathanw 	    PCMCIA_VENDOR_DLINK_2,
   1566         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1567         1.1  christos 	    PCMCIA_CIS_INVALID,
   1568   1.120.2.7   nathanw 	    0,
   1569   1.120.2.6   nathanw 	    "D-Link",
   1570       1.119   thorpej 	    NULL,
   1571       1.119   thorpej 	},
   1572       1.119   thorpej 	{
   1573   1.120.2.7   nathanw 	    PCMCIA_VENDOR_LINKSYS,
   1574       1.119   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1575       1.119   thorpej 	    PCMCIA_CIS_INVALID,
   1576   1.120.2.7   nathanw 	    0,
   1577   1.120.2.6   nathanw 	    "Linksys Corporation",
   1578         1.5   thorpej 	    NULL,
   1579         1.5   thorpej 	},
   1580         1.5   thorpej 	{
   1581   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NETGEAR,
   1582   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1583   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1584   1.120.2.8   nathanw 	    0,
   1585   1.120.2.8   nathanw 	    "Netgear",
   1586   1.120.2.8   nathanw 	    NULL,
   1587   1.120.2.8   nathanw 	},
   1588   1.120.2.8   nathanw 	{
   1589   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SIMPLETECH,
   1590         1.5   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1591         1.5   thorpej 	    PCMCIA_CIS_INVALID,
   1592   1.120.2.7   nathanw 	    0,
   1593         1.5   thorpej 	    "Simple Technology",
   1594        1.42  sommerfe 	    NULL,
   1595        1.42  sommerfe 	},
   1596        1.42  sommerfe 	{
   1597   1.120.2.8   nathanw 	    PCMCIA_VENDOR_SYMBOL2,
   1598   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1599   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1600   1.120.2.8   nathanw 	    0,
   1601   1.120.2.8   nathanw 	    "Symbol",
   1602   1.120.2.8   nathanw 	    NULL,
   1603   1.120.2.8   nathanw 	},
   1604   1.120.2.8   nathanw 	{
   1605   1.120.2.7   nathanw 	    PCMCIA_VENDOR_LUCENT,
   1606        1.42  sommerfe 	    PCMCIA_KNOWNDEV_NOPROD,
   1607        1.42  sommerfe 	    PCMCIA_CIS_INVALID,
   1608   1.120.2.7   nathanw 	    0,
   1609        1.42  sommerfe 	    "Lucent Technologies",
   1610        1.67      jlam 	    NULL,
   1611        1.67      jlam 	},
   1612        1.67      jlam 	{
   1613   1.120.2.7   nathanw 	    PCMCIA_VENDOR_AIRONET,
   1614        1.67      jlam 	    PCMCIA_KNOWNDEV_NOPROD,
   1615        1.67      jlam 	    PCMCIA_CIS_INVALID,
   1616   1.120.2.7   nathanw 	    0,
   1617        1.67      jlam 	    "Aironet Wireless Communications",
   1618        1.66      joda 	    NULL,
   1619        1.66      joda 	},
   1620        1.66      joda 	{
   1621   1.120.2.9   nathanw 	    PCMCIA_VENDOR_ERICSSON,
   1622   1.120.2.9   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1623   1.120.2.9   nathanw 	    PCMCIA_CIS_INVALID,
   1624   1.120.2.9   nathanw 	    0,
   1625   1.120.2.9   nathanw 	    "Ericsson",
   1626   1.120.2.9   nathanw 	    NULL,
   1627   1.120.2.9   nathanw 	},
   1628   1.120.2.9   nathanw 	{
   1629   1.120.2.7   nathanw 	    PCMCIA_VENDOR_PSION,
   1630   1.120.2.3   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1631   1.120.2.3   nathanw 	    PCMCIA_CIS_INVALID,
   1632   1.120.2.7   nathanw 	    0,
   1633   1.120.2.3   nathanw 	    "Psion",
   1634   1.120.2.3   nathanw 	    NULL,
   1635   1.120.2.3   nathanw 	},
   1636   1.120.2.3   nathanw 	{
   1637   1.120.2.7   nathanw 	    PCMCIA_VENDOR_COMPAQ2,
   1638        1.66      joda 	    PCMCIA_KNOWNDEV_NOPROD,
   1639        1.66      joda 	    PCMCIA_CIS_INVALID,
   1640   1.120.2.7   nathanw 	    0,
   1641        1.66      joda 	    "Compaq",
   1642         1.1  christos 	    NULL,
   1643         1.1  christos 	},
   1644         1.1  christos 	{
   1645   1.120.2.7   nathanw 	    PCMCIA_VENDOR_KINGSTON,
   1646       1.110       imp 	    PCMCIA_KNOWNDEV_NOPROD,
   1647       1.110       imp 	    PCMCIA_CIS_INVALID,
   1648   1.120.2.7   nathanw 	    0,
   1649       1.110       imp 	    "Kingston",
   1650       1.110       imp 	    NULL,
   1651       1.110       imp 	},
   1652       1.110       imp 	{
   1653   1.120.2.7   nathanw 	    PCMCIA_VENDOR_DAYNA,
   1654         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1655         1.1  christos 	    PCMCIA_CIS_INVALID,
   1656   1.120.2.7   nathanw 	    0,
   1657         1.1  christos 	    "Dayna Corporation",
   1658        1.64  augustss 	    NULL,
   1659        1.64  augustss 	},
   1660        1.64  augustss 	{
   1661   1.120.2.7   nathanw 	    PCMCIA_VENDOR_RAYTHEON,
   1662        1.64  augustss 	    PCMCIA_KNOWNDEV_NOPROD,
   1663        1.64  augustss 	    PCMCIA_CIS_INVALID,
   1664   1.120.2.7   nathanw 	    0,
   1665        1.68    chopps 	    "Raytheon",
   1666        1.56  sommerfe 	    NULL,
   1667        1.56  sommerfe 	},
   1668        1.56  sommerfe 	{
   1669   1.120.2.7   nathanw 	    PCMCIA_VENDOR_IODATA,
   1670        1.56  sommerfe 	    PCMCIA_KNOWNDEV_NOPROD,
   1671        1.56  sommerfe 	    PCMCIA_CIS_INVALID,
   1672   1.120.2.7   nathanw 	    0,
   1673        1.97       imp 	    "I-O DATA",
   1674         1.1  christos 	    NULL,
   1675         1.1  christos 	},
   1676         1.1  christos 	{
   1677   1.120.2.7   nathanw 	    PCMCIA_VENDOR_BAY,
   1678         1.1  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1679         1.1  christos 	    PCMCIA_CIS_INVALID,
   1680   1.120.2.7   nathanw 	    0,
   1681        1.97       imp 	    "Bay Networks",
   1682        1.91      onoe 	    NULL,
   1683        1.91      onoe 	},
   1684        1.91      onoe 	{
   1685   1.120.2.7   nathanw 	    PCMCIA_VENDOR_FARALLON,
   1686        1.91      onoe 	    PCMCIA_KNOWNDEV_NOPROD,
   1687        1.91      onoe 	    PCMCIA_CIS_INVALID,
   1688   1.120.2.7   nathanw 	    0,
   1689        1.91      onoe 	    "Farallon Communications",
   1690        1.84   mycroft 	    NULL,
   1691        1.84   mycroft 	},
   1692        1.84   mycroft 	{
   1693   1.120.2.7   nathanw 	    PCMCIA_VENDOR_TELECOMDEVICE,
   1694        1.98   msaitoh 	    PCMCIA_KNOWNDEV_NOPROD,
   1695        1.98   msaitoh 	    PCMCIA_CIS_INVALID,
   1696   1.120.2.7   nathanw 	    0,
   1697        1.98   msaitoh 	    "Telecom Device",
   1698        1.98   msaitoh 	    NULL,
   1699        1.98   msaitoh 	},
   1700        1.98   msaitoh 	{
   1701   1.120.2.7   nathanw 	    PCMCIA_VENDOR_NOKIA,
   1702        1.84   mycroft 	    PCMCIA_KNOWNDEV_NOPROD,
   1703        1.84   mycroft 	    PCMCIA_CIS_INVALID,
   1704   1.120.2.7   nathanw 	    0,
   1705        1.84   mycroft 	    "Nokia Communications",
   1706        1.96      onoe 	    NULL,
   1707        1.96      onoe 	},
   1708        1.96      onoe 	{
   1709   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SAMSUNG,
   1710        1.96      onoe 	    PCMCIA_KNOWNDEV_NOPROD,
   1711        1.96      onoe 	    PCMCIA_CIS_INVALID,
   1712   1.120.2.7   nathanw 	    0,
   1713        1.96      onoe 	    "Samsung",
   1714   1.120.2.4   nathanw 	    NULL,
   1715   1.120.2.4   nathanw 	},
   1716   1.120.2.4   nathanw 	{
   1717   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SYMBOL,
   1718   1.120.2.4   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1719   1.120.2.4   nathanw 	    PCMCIA_CIS_INVALID,
   1720   1.120.2.7   nathanw 	    0,
   1721   1.120.2.4   nathanw 	    "Symbol",
   1722   1.120.2.2   nathanw 	    NULL,
   1723   1.120.2.2   nathanw 	},
   1724   1.120.2.2   nathanw 	{
   1725   1.120.2.7   nathanw 	    PCMCIA_VENDOR_BUFFALO,
   1726   1.120.2.2   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1727   1.120.2.2   nathanw 	    PCMCIA_CIS_INVALID,
   1728   1.120.2.7   nathanw 	    0,
   1729   1.120.2.2   nathanw 	    "BUFFALO (Melco Corporation)",
   1730   1.120.2.1   nathanw 	    NULL,
   1731   1.120.2.1   nathanw 	},
   1732   1.120.2.1   nathanw 	{
   1733   1.120.2.9   nathanw 	    PCMCIA_VENDOR_LINKSYS2,
   1734   1.120.2.9   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1735   1.120.2.9   nathanw 	    PCMCIA_CIS_INVALID,
   1736   1.120.2.9   nathanw 	    0,
   1737   1.120.2.9   nathanw 	    "The Linksys Group",
   1738   1.120.2.9   nathanw 	    NULL,
   1739   1.120.2.9   nathanw 	},
   1740   1.120.2.9   nathanw 	{
   1741   1.120.2.7   nathanw 	    PCMCIA_VENDOR_IODATA2,
   1742   1.120.2.1   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1743   1.120.2.1   nathanw 	    PCMCIA_CIS_INVALID,
   1744   1.120.2.7   nathanw 	    0,
   1745   1.120.2.1   nathanw 	    "I-O DATA",
   1746        1.41       mjl 	    NULL,
   1747        1.41       mjl 	},
   1748        1.41       mjl 	{
   1749   1.120.2.8   nathanw 	    PCMCIA_VENDOR_BREEZECOM,
   1750   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1751   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1752   1.120.2.8   nathanw 	    0,
   1753   1.120.2.8   nathanw 	    "BreezeCOM",
   1754   1.120.2.8   nathanw 	    NULL,
   1755   1.120.2.8   nathanw 	},
   1756   1.120.2.8   nathanw 	{
   1757   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NEWMEDIA2,
   1758   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1759   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1760   1.120.2.8   nathanw 	    0,
   1761   1.120.2.8   nathanw 	    "NewMedia",
   1762   1.120.2.8   nathanw 	    NULL,
   1763   1.120.2.8   nathanw 	},
   1764   1.120.2.8   nathanw 	{
   1765   1.120.2.7   nathanw 	    PCMCIA_VENDOR_LASAT,
   1766        1.41       mjl 	    PCMCIA_KNOWNDEV_NOPROD,
   1767        1.41       mjl 	    PCMCIA_CIS_INVALID,
   1768   1.120.2.7   nathanw 	    0,
   1769        1.41       mjl 	    "Lasat Communications A/S",
   1770        1.73     soren 	    NULL,
   1771        1.73     soren 	},
   1772        1.73     soren 	{
   1773   1.120.2.7   nathanw 	    PCMCIA_VENDOR_LEXARMEDIA,
   1774        1.73     soren 	    PCMCIA_KNOWNDEV_NOPROD,
   1775        1.73     soren 	    PCMCIA_CIS_INVALID,
   1776   1.120.2.7   nathanw 	    0,
   1777        1.73     soren 	    "Lexar Media",
   1778        1.27   thorpej 	    NULL,
   1779        1.27   thorpej 	},
   1780        1.27   thorpej 	{
   1781   1.120.2.8   nathanw 	    PCMCIA_VENDOR_ARCHOS,
   1782   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1783   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1784   1.120.2.8   nathanw 	    0,
   1785   1.120.2.8   nathanw 	    "Archos",
   1786   1.120.2.8   nathanw 	    NULL,
   1787   1.120.2.8   nathanw 	},
   1788   1.120.2.8   nathanw 	{
   1789   1.120.2.8   nathanw 	    PCMCIA_VENDOR_DUAL,
   1790   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1791   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1792   1.120.2.8   nathanw 	    0,
   1793   1.120.2.8   nathanw 	    "Dual",
   1794   1.120.2.8   nathanw 	    NULL,
   1795   1.120.2.8   nathanw 	},
   1796   1.120.2.8   nathanw 	{
   1797   1.120.2.9   nathanw 	    PCMCIA_VENDOR_EDIMAX,
   1798   1.120.2.9   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1799   1.120.2.9   nathanw 	    PCMCIA_CIS_INVALID,
   1800   1.120.2.9   nathanw 	    0,
   1801   1.120.2.9   nathanw 	    "Edimax Technology Inc.",
   1802   1.120.2.9   nathanw 	    NULL,
   1803   1.120.2.9   nathanw 	},
   1804   1.120.2.9   nathanw 	{
   1805   1.120.2.7   nathanw 	    PCMCIA_VENDOR_COMPEX,
   1806        1.27   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1807        1.27   thorpej 	    PCMCIA_CIS_INVALID,
   1808   1.120.2.7   nathanw 	    0,
   1809        1.27   thorpej 	    "Compex Corporation",
   1810        1.24   thorpej 	    NULL,
   1811        1.24   thorpej 	},
   1812        1.24   thorpej 	{
   1813   1.120.2.7   nathanw 	    PCMCIA_VENDOR_MELCO,
   1814        1.78     enami 	    PCMCIA_KNOWNDEV_NOPROD,
   1815        1.78     enami 	    PCMCIA_CIS_INVALID,
   1816   1.120.2.7   nathanw 	    0,
   1817        1.78     enami 	    "Melco Corporation",
   1818        1.78     enami 	    NULL,
   1819        1.78     enami 	},
   1820        1.78     enami 	{
   1821   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ZONET,
   1822   1.120.2.3   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1823   1.120.2.3   nathanw 	    PCMCIA_CIS_INVALID,
   1824   1.120.2.7   nathanw 	    0,
   1825   1.120.2.3   nathanw 	    "Zonet Technology Inc.",
   1826   1.120.2.3   nathanw 	    NULL,
   1827   1.120.2.3   nathanw 	},
   1828   1.120.2.3   nathanw 	{
   1829   1.120.2.7   nathanw 	    PCMCIA_VENDOR_CONTEC,
   1830        1.46      tron 	    PCMCIA_KNOWNDEV_NOPROD,
   1831        1.46      tron 	    PCMCIA_CIS_INVALID,
   1832   1.120.2.7   nathanw 	    0,
   1833        1.46      tron 	    "Contec",
   1834        1.98   msaitoh 	    NULL,
   1835        1.98   msaitoh 	},
   1836        1.98   msaitoh 	{
   1837   1.120.2.7   nathanw 	    PCMCIA_VENDOR_MACNICA,
   1838        1.98   msaitoh 	    PCMCIA_KNOWNDEV_NOPROD,
   1839        1.98   msaitoh 	    PCMCIA_CIS_INVALID,
   1840   1.120.2.7   nathanw 	    0,
   1841        1.98   msaitoh 	    "MACNICA",
   1842       1.109    nonaka 	    NULL,
   1843       1.109    nonaka 	},
   1844       1.109    nonaka 	{
   1845   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ROLAND,
   1846       1.109    nonaka 	    PCMCIA_KNOWNDEV_NOPROD,
   1847       1.109    nonaka 	    PCMCIA_CIS_INVALID,
   1848   1.120.2.7   nathanw 	    0,
   1849       1.109    nonaka 	    "Roland",
   1850        1.46      tron 	    NULL,
   1851        1.46      tron 	},
   1852        1.46      tron 	{
   1853   1.120.2.7   nathanw 	    PCMCIA_VENDOR_COREGA,
   1854        1.24   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1855        1.24   thorpej 	    PCMCIA_CIS_INVALID,
   1856   1.120.2.7   nathanw 	    0,
   1857        1.24   thorpej 	    "Corega K.K.",
   1858        1.46      tron 	    NULL,
   1859        1.46      tron 	},
   1860        1.46      tron 	{
   1861   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ALLIEDTELESIS,
   1862        1.46      tron 	    PCMCIA_KNOWNDEV_NOPROD,
   1863        1.46      tron 	    PCMCIA_CIS_INVALID,
   1864   1.120.2.7   nathanw 	    0,
   1865        1.46      tron 	    "Allied Telesis K.K.",
   1866         1.4  christos 	    NULL,
   1867         1.4  christos 	},
   1868         1.4  christos 	{
   1869   1.120.2.7   nathanw 	    PCMCIA_VENDOR_HAGIWARASYSCOM,
   1870        1.16      kenh 	    PCMCIA_KNOWNDEV_NOPROD,
   1871        1.16      kenh 	    PCMCIA_CIS_INVALID,
   1872   1.120.2.7   nathanw 	    0,
   1873        1.16      kenh 	    "Hagiwara SYS-COM",
   1874        1.89        is 	    NULL,
   1875        1.89        is 	},
   1876        1.89        is 	{
   1877   1.120.2.7   nathanw 	    PCMCIA_VENDOR_RATOC,
   1878        1.89        is 	    PCMCIA_KNOWNDEV_NOPROD,
   1879        1.89        is 	    PCMCIA_CIS_INVALID,
   1880   1.120.2.7   nathanw 	    0,
   1881        1.89        is 	    "RATOC System Inc.",
   1882       1.107    ichiro 	    NULL,
   1883       1.107    ichiro 	},
   1884       1.107    ichiro 	{
   1885   1.120.2.7   nathanw 	    PCMCIA_VENDOR_EMTAC,
   1886       1.107    ichiro 	    PCMCIA_KNOWNDEV_NOPROD,
   1887       1.107    ichiro 	    PCMCIA_CIS_INVALID,
   1888   1.120.2.7   nathanw 	    0,
   1889       1.107    ichiro 	    "EMTAC Technology Corporation",
   1890       1.100   hubertf 	    NULL,
   1891       1.100   hubertf 	},
   1892       1.100   hubertf 	{
   1893   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ELSA,
   1894       1.100   hubertf 	    PCMCIA_KNOWNDEV_NOPROD,
   1895       1.100   hubertf 	    PCMCIA_CIS_INVALID,
   1896   1.120.2.7   nathanw 	    0,
   1897       1.100   hubertf 	    "Elsa",
   1898        1.16      kenh 	    NULL,
   1899        1.16      kenh 	},
   1900        1.16      kenh 	{
   1901   1.120.2.7   nathanw 	    PCMCIA_VENDOR_AMBICOM,
   1902         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1903         1.4  christos 	    PCMCIA_CIS_INVALID,
   1904   1.120.2.7   nathanw 	    0,
   1905   1.120.2.6   nathanw 	    "AmbiCom Inc",
   1906         1.4  christos 	    NULL,
   1907         1.4  christos 	},
   1908         1.4  christos 	{
   1909   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ACCTON,
   1910         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1911         1.4  christos 	    PCMCIA_CIS_INVALID,
   1912   1.120.2.7   nathanw 	    0,
   1913   1.120.2.6   nathanw 	    "ACCTON",
   1914        1.50     enami 	    NULL,
   1915        1.50     enami 	},
   1916        1.50     enami 	{
   1917   1.120.2.7   nathanw 	    PCMCIA_VENDOR_AMD,
   1918        1.50     enami 	    PCMCIA_KNOWNDEV_NOPROD,
   1919        1.50     enami 	    PCMCIA_CIS_INVALID,
   1920   1.120.2.7   nathanw 	    0,
   1921   1.120.2.6   nathanw 	    "AMD",
   1922         1.4  christos 	    NULL,
   1923         1.4  christos 	},
   1924         1.4  christos 	{
   1925   1.120.2.7   nathanw 	    PCMCIA_VENDOR_BILLIONTON,
   1926         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1927         1.4  christos 	    PCMCIA_CIS_INVALID,
   1928   1.120.2.7   nathanw 	    0,
   1929   1.120.2.6   nathanw 	    "Billionton Systems Inc.",
   1930         1.4  christos 	    NULL,
   1931         1.4  christos 	},
   1932         1.4  christos 	{
   1933   1.120.2.7   nathanw 	    PCMCIA_VENDOR_CNET,
   1934         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1935         1.4  christos 	    PCMCIA_CIS_INVALID,
   1936   1.120.2.7   nathanw 	    0,
   1937   1.120.2.6   nathanw 	    "CNet",
   1938         1.4  christos 	    NULL,
   1939         1.4  christos 	},
   1940         1.4  christos 	{
   1941   1.120.2.7   nathanw 	    PCMCIA_VENDOR_DIGITAL,
   1942         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1943         1.4  christos 	    PCMCIA_CIS_INVALID,
   1944   1.120.2.7   nathanw 	    0,
   1945   1.120.2.6   nathanw 	    "Digital Equipment Corporation",
   1946         1.4  christos 	    NULL,
   1947         1.4  christos 	},
   1948         1.4  christos 	{
   1949   1.120.2.7   nathanw 	    PCMCIA_VENDOR_DLINK,
   1950         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1951         1.4  christos 	    PCMCIA_CIS_INVALID,
   1952   1.120.2.7   nathanw 	    0,
   1953   1.120.2.6   nathanw 	    "D-Link",
   1954         1.4  christos 	    NULL,
   1955         1.4  christos 	},
   1956         1.4  christos 	{
   1957   1.120.2.7   nathanw 	    PCMCIA_VENDOR_EIGERLABS,
   1958         1.4  christos 	    PCMCIA_KNOWNDEV_NOPROD,
   1959         1.4  christos 	    PCMCIA_CIS_INVALID,
   1960   1.120.2.7   nathanw 	    0,
   1961   1.120.2.6   nathanw 	    "Eiger labs,Inc.",
   1962        1.16      kenh 	    NULL,
   1963        1.16      kenh 	},
   1964        1.16      kenh 	{
   1965   1.120.2.7   nathanw 	    PCMCIA_VENDOR_EPSON,
   1966        1.16      kenh 	    PCMCIA_KNOWNDEV_NOPROD,
   1967        1.16      kenh 	    PCMCIA_CIS_INVALID,
   1968   1.120.2.7   nathanw 	    0,
   1969   1.120.2.6   nathanw 	    "Seiko Epson Corporation",
   1970        1.25   thorpej 	    NULL,
   1971        1.25   thorpej 	},
   1972        1.25   thorpej 	{
   1973   1.120.2.7   nathanw 	    PCMCIA_VENDOR_EXP,
   1974        1.25   thorpej 	    PCMCIA_KNOWNDEV_NOPROD,
   1975        1.25   thorpej 	    PCMCIA_CIS_INVALID,
   1976   1.120.2.7   nathanw 	    0,
   1977   1.120.2.6   nathanw 	    "EXP Computer Inc",
   1978       1.110       imp 	    NULL,
   1979       1.110       imp 	},
   1980       1.110       imp 	{
   1981   1.120.2.8   nathanw 	    PCMCIA_VENDOR_GEMTEK,
   1982   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   1983   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   1984   1.120.2.8   nathanw 	    0,
   1985   1.120.2.8   nathanw 	    "Gem Tek",
   1986   1.120.2.8   nathanw 	    NULL,
   1987   1.120.2.8   nathanw 	},
   1988   1.120.2.8   nathanw 	{
   1989   1.120.2.7   nathanw 	    PCMCIA_VENDOR_ICOM,
   1990       1.110       imp 	    PCMCIA_KNOWNDEV_NOPROD,
   1991       1.110       imp 	    PCMCIA_CIS_INVALID,
   1992   1.120.2.7   nathanw 	    0,
   1993   1.120.2.6   nathanw 	    "ICOM Inc",
   1994        1.48        is 	    NULL,
   1995        1.48        is 	},
   1996        1.48        is 	{
   1997   1.120.2.7   nathanw 	    PCMCIA_VENDOR_INTERSIL,
   1998        1.48        is 	    PCMCIA_KNOWNDEV_NOPROD,
   1999        1.48        is 	    PCMCIA_CIS_INVALID,
   2000   1.120.2.7   nathanw 	    0,
   2001   1.120.2.6   nathanw 	    "Intersil",
   2002   1.120.2.9   nathanw 	    NULL,
   2003   1.120.2.9   nathanw 	},
   2004   1.120.2.9   nathanw 	{
   2005   1.120.2.9   nathanw 	    PCMCIA_VENDOR_LANTECH,
   2006   1.120.2.9   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   2007   1.120.2.9   nathanw 	    PCMCIA_CIS_INVALID,
   2008   1.120.2.9   nathanw 	    0,
   2009   1.120.2.9   nathanw 	    "Lantech Computer Company",
   2010        1.63      danw 	    NULL,
   2011        1.63      danw 	},
   2012        1.63      danw 	{
   2013   1.120.2.7   nathanw 	    PCMCIA_VENDOR_NAKAGAWAMETAL,
   2014        1.63      danw 	    PCMCIA_KNOWNDEV_NOPROD,
   2015        1.63      danw 	    PCMCIA_CIS_INVALID,
   2016   1.120.2.7   nathanw 	    0,
   2017   1.120.2.6   nathanw 	    "NAKAGAWA METAL",
   2018   1.120.2.8   nathanw 	    NULL,
   2019   1.120.2.8   nathanw 	},
   2020   1.120.2.8   nathanw 	{
   2021   1.120.2.8   nathanw 	    PCMCIA_VENDOR_NDC,
   2022   1.120.2.8   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   2023   1.120.2.8   nathanw 	    PCMCIA_CIS_INVALID,
   2024   1.120.2.8   nathanw 	    0,
   2025   1.120.2.8   nathanw 	    "NDC",
   2026        1.65  augustss 	    NULL,
   2027        1.65  augustss 	},
   2028        1.65  augustss 	{
   2029   1.120.2.7   nathanw 	    PCMCIA_VENDOR_PLANET,
   2030        1.65  augustss 	    PCMCIA_KNOWNDEV_NOPROD,
   2031        1.65  augustss 	    PCMCIA_CIS_INVALID,
   2032   1.120.2.7   nathanw 	    0,
   2033   1.120.2.6   nathanw 	    "Planet",
   2034        1.77     enami 	    NULL,
   2035        1.77     enami 	},
   2036        1.77     enami 	{
   2037   1.120.2.7   nathanw 	    PCMCIA_VENDOR_PLANEX,
   2038        1.77     enami 	    PCMCIA_KNOWNDEV_NOPROD,
   2039        1.77     enami 	    PCMCIA_CIS_INVALID,
   2040   1.120.2.7   nathanw 	    0,
   2041   1.120.2.6   nathanw 	    "Planex Communications Inc",
   2042        1.79       uch 	    NULL,
   2043        1.79       uch 	},
   2044        1.79       uch 	{
   2045   1.120.2.7   nathanw 	    PCMCIA_VENDOR_PREMAX,
   2046        1.79       uch 	    PCMCIA_KNOWNDEV_NOPROD,
   2047        1.79       uch 	    PCMCIA_CIS_INVALID,
   2048   1.120.2.7   nathanw 	    0,
   2049   1.120.2.6   nathanw 	    "Premax",
   2050        1.81      onoe 	    NULL,
   2051        1.81      onoe 	},
   2052        1.81      onoe 	{
   2053   1.120.2.7   nathanw 	    PCMCIA_VENDOR_RPTI,
   2054        1.81      onoe 	    PCMCIA_KNOWNDEV_NOPROD,
   2055        1.81      onoe 	    PCMCIA_CIS_INVALID,
   2056   1.120.2.7   nathanw 	    0,
   2057   1.120.2.6   nathanw 	    "RPTI",
   2058        1.94      onoe 	    NULL,
   2059        1.94      onoe 	},
   2060        1.94      onoe 	{
   2061   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SVEC,
   2062        1.94      onoe 	    PCMCIA_KNOWNDEV_NOPROD,
   2063        1.94      onoe 	    PCMCIA_CIS_INVALID,
   2064   1.120.2.7   nathanw 	    0,
   2065   1.120.2.6   nathanw 	    "SVEC/Hawking Technology",
   2066       1.120   aymeric 	    NULL,
   2067       1.120   aymeric 	},
   2068       1.120   aymeric 	{
   2069   1.120.2.7   nathanw 	    PCMCIA_VENDOR_SYNERGY21,
   2070       1.120   aymeric 	    PCMCIA_KNOWNDEV_NOPROD,
   2071       1.120   aymeric 	    PCMCIA_CIS_INVALID,
   2072   1.120.2.7   nathanw 	    0,
   2073       1.120   aymeric 	    "Synergy 21",
   2074   1.120.2.3   nathanw 	    NULL,
   2075   1.120.2.3   nathanw 	},
   2076   1.120.2.3   nathanw 	{
   2077   1.120.2.7   nathanw 	    PCMCIA_VENDOR_TEAC,
   2078   1.120.2.3   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   2079   1.120.2.3   nathanw 	    PCMCIA_CIS_INVALID,
   2080   1.120.2.7   nathanw 	    0,
   2081   1.120.2.6   nathanw 	    "TEAC",
   2082   1.120.2.5   nathanw 	    NULL,
   2083   1.120.2.5   nathanw 	},
   2084   1.120.2.5   nathanw 	{
   2085   1.120.2.7   nathanw 	    PCMCIA_VENDOR_YEDATA,
   2086   1.120.2.5   nathanw 	    PCMCIA_KNOWNDEV_NOPROD,
   2087   1.120.2.5   nathanw 	    PCMCIA_CIS_INVALID,
   2088   1.120.2.7   nathanw 	    0,
   2089   1.120.2.6   nathanw 	    "Y-E DATA",
   2090         1.1  christos 	    NULL,
   2091         1.1  christos 	},
   2092         1.1  christos 	{ 0, 0, { NULL, NULL, NULL, NULL }, 0, NULL, NULL, }
   2093         1.1  christos };
   2094