diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-12-12 07:05:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-12-12 07:05:50 +0000 |
commit | b3c39f4d613a70f0b07033aa61668eaeb216628a (patch) | |
tree | 085acd910ed6ea86db7ce33790e721e5885c8780 | |
parent | 81ab06bd533ae45298f0aecec83cafc63aa2670c (diff) |
support 3 buffalo pcmcia ns2k devices found in japan (one of which is CF)
-rw-r--r-- | share/man/man4/ne.4 | 5 | ||||
-rw-r--r-- | sys/dev/pcmcia/if_ne_pcmcia.c | 14 | ||||
-rw-r--r-- | sys/dev/pcmcia/pcmciadevs | 5 |
3 files changed, 21 insertions, 3 deletions
diff --git a/share/man/man4/ne.4 b/share/man/man4/ne.4 index 23b66f737fb..fdfc1bbe63f 100644 --- a/share/man/man4/ne.4 +++ b/share/man/man4/ne.4 @@ -1,4 +1,4 @@ -.\" $OpenBSD: ne.4,v 1.19 2004/09/30 19:59:25 mickey Exp $ +.\" $OpenBSD: ne.4,v 1.20 2004/12/12 07:05:49 deraadt Exp $ .\" $NetBSD: ne.4,v 1.4 1998/02/22 05:21:20 enami Exp $ .\" .\" Copyright (c) 1997 The NetBSD Foundation, Inc. @@ -69,6 +69,9 @@ cards, including: .It Li "Arowana FE" Ta PCMCIA .It Li "Belkin F5D5020" Ta PCMCIA .It Li "Billionton Systems LNT-10TN" Ta PCMCIA +.It Li "BUFFALO LPC_CF_CLT" Ta PCMCIA +.It Li "BUFFALO LPC4_CLX" Ta PCMCIA +.It Li "BUFFALO LPC3_CLT" Ta PCMCIA .It Li "CNet NE2000, FastEthernet" Ta PCMCIA .It Li "Compex PCI Ethernet" Ta PCI .It Li "Compex Linkport ENET-B" Ta PCMCIA diff --git a/sys/dev/pcmcia/if_ne_pcmcia.c b/sys/dev/pcmcia/if_ne_pcmcia.c index 624154b7da2..e2c85e954b3 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.75 2004/05/11 04:38:17 deraadt Exp $ */ +/* $OpenBSD: if_ne_pcmcia.c,v 1.76 2004/12/12 07:05:49 deraadt Exp $ */ /* $NetBSD: if_ne_pcmcia.c,v 1.17 1998/08/15 19:00:04 thorpej Exp $ */ /* @@ -414,6 +414,18 @@ const struct ne2000dev { PCMCIA_CIS_MELCO_LPC3_TX, 0, -1, { 0x00, 0x40, 0x26 }, NE2000DVF_AX88190 }, + { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC_CF_CLT, + PCMCIA_CIS_INVALID, + 0, -1, { 0x00, 0x07, 0x40 } }, + + { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC3_CLT, + PCMCIA_CIS_INVALID, + 0, -1, { 0x00, 0x07, 0x40 } }, + + { PCMCIA_VENDOR_BUFFALO, PCMCIA_PRODUCT_BUFFALO_LPC4_CLX, + PCMCIA_CIS_INVALID, + 0, -1, { 0x00, 0x40, 0xfa }, NE2000DVF_AX88190 }, + { PCMCIA_VENDOR_DUAL, PCMCIA_PRODUCT_DUAL_NE2000, PCMCIA_CIS_DUAL_NE2000, 0, 0x0ff0, { 0x00, 0xa0, 0x0c } }, diff --git a/sys/dev/pcmcia/pcmciadevs b/sys/dev/pcmcia/pcmciadevs index 089d578c931..5d4cd3e9fa1 100644 --- a/sys/dev/pcmcia/pcmciadevs +++ b/sys/dev/pcmcia/pcmciadevs @@ -1,4 +1,4 @@ - $OpenBSD: pcmciadevs,v 1.119 2004/10/22 08:39:54 jsg Exp $ + $OpenBSD: pcmciadevs,v 1.120 2004/12/12 07:05:49 deraadt Exp $ /* $NetBSD: pcmciadevs,v 1.13 1998/08/17 23:10:12 thorpej Exp $ */ /* @@ -169,6 +169,9 @@ product BELKIN F5D5020 0x2328 F5D5020 product BREEZECOM BREEZENET 0x0102 BreezeCOM BreezeNET /* BUFFALO Products */ +product BUFFALO LPC_CF_CLT 0x0307 BUFFALO LPC-CF-CLT +product BUFFALO LPC4_CLX 0x0309 BUFFALO LPC4-CLX +product BUFFALO LPC3_CLT 0x030a BUFFALO LPC3-CLT product BUFFALO WLI_PCM_S11 0x0305 BUFFALO AirStation 11Mbps WLAN product BUFFALO WLI_CF_S11G 0x030b BUFFALO AirStation 11Mbps CF WLAN |