diff options
author | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-11-20 15:01:14 +0000 |
---|---|---|
committer | Federico G. Schwindt <fgsch@cvs.openbsd.org> | 2002-11-20 15:01:14 +0000 |
commit | cb007ece077cb347a1c5cdedc21c0aedda206a82 (patch) | |
tree | 0f9e9a48f92ac05525e7be157015fa0af53a7267 /sys | |
parent | b6fdfafcda81f298542ecc6b6b7ab7a7e6158a37 (diff) |
Belkin F5D5020 support; from Michael J. Eisenhower.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/pcmcia/if_ne_pcmcia.c | 6 | ||||
-rw-r--r-- | sys/dev/pcmcia/pcmciadevs.h | 9 |
2 files changed, 12 insertions, 3 deletions
diff --git a/sys/dev/pcmcia/if_ne_pcmcia.c b/sys/dev/pcmcia/if_ne_pcmcia.c index e42b5ea2a37..3fcffc36570 100644 --- a/sys/dev/pcmcia/if_ne_pcmcia.c +++ b/sys/dev/pcmcia/if_ne_pcmcia.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_ne_pcmcia.c,v 1.63 2002/11/10 18:52:02 mickey Exp $ */ +/* $OpenBSD: if_ne_pcmcia.c,v 1.64 2002/11/20 15:01:13 fgsch Exp $ */ /* $NetBSD: if_ne_pcmcia.c,v 1.17 1998/08/15 19:00:04 thorpej Exp $ */ /* @@ -419,6 +419,10 @@ const struct ne2000dev { PCMCIA_CIS_NETGEAR_FA411, 0, -1, { 0x00, 0x40, 0xf4 } }, + { PCMCIA_VENDOR_BELKIN, PCMCIA_PRODUCT_BELKIN_F5D5020, + PCMCIA_CIS_BELKIN_F5D5020, + 0, -1, { 0x00, 0x30, 0xbd } }, + #if 0 /* the rest of these are stolen from the linux pcnet pcmcia device driver. Since I don't know the manfid or cis info strings for diff --git a/sys/dev/pcmcia/pcmciadevs.h b/sys/dev/pcmcia/pcmciadevs.h index 0e6ca5a6c99..96e595c7b65 100644 --- a/sys/dev/pcmcia/pcmciadevs.h +++ b/sys/dev/pcmcia/pcmciadevs.h @@ -1,10 +1,10 @@ -/* $OpenBSD: pcmciadevs.h,v 1.98 2002/11/10 18:52:32 mickey Exp $ */ +/* $OpenBSD: pcmciadevs.h,v 1.99 2002/11/20 15:01:13 fgsch Exp $ */ /* * THIS FILE AUTOMATICALLY GENERATED. DO NOT EDIT. * * generated from: - * OpenBSD: pcmciadevs,v 1.96 2002/11/10 18:52:02 mickey Exp + * OpenBSD: pcmciadevs,v 1.97 2002/11/20 14:58:53 fgsch Exp */ /* $NetBSD: pcmciadevs,v 1.13 1998/08/17 23:10:12 thorpej Exp $ */ @@ -81,6 +81,7 @@ #define PCMCIA_VENDOR_RAYTHEON 0x01a6 /* Raytheon */ #define PCMCIA_VENDOR_BAY 0x01eb /* Bay Networks */ #define PCMCIA_VENDOR_IODATA 0x01bf /* I-O DATA */ +#define PCMCIA_VENDOR_BELKIN 0x01bf /* Belkin */ #define PCMCIA_VENDOR_FARALLON 0x0200 /* Farallon Communications */ #define PCMCIA_VENDOR_TELECOMDEVICE 0x021b /* Telecom Device */ #define PCMCIA_VENDOR_NOKIA 0x023d /* Nokia Communications */ @@ -170,6 +171,10 @@ #define PCMCIA_CIS_BAY_STACK_660 { NULL, NULL, NULL, NULL } #define PCMCIA_PRODUCT_BAY_STACK_660 0x0807 +/* Belkin */ +#define PCMCIA_CIS_BELKIN_F5D5020 { NULL, NULL, NULL, NULL } +#define PCMCIA_PRODUCT_BELKIN_F5D5020 0x2328 + /* BreezeCOM */ #define PCMCIA_CIS_BREEZECOM_BREEZENET { NULL, NULL, NULL, NULL } #define PCMCIA_PRODUCT_BREEZECOM_BREEZENET 0x0102 |