diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-10-25 16:39:26 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2001-10-25 16:39:26 +0000 |
commit | 82a99acf5a2207eb5e02e63c5ea5389d0a40c347 (patch) | |
tree | 45db0add57f0302a16b92060155608516ffbe6a1 /sys/dev/ic/if_wi.c | |
parent | 769593e6a28f837c00ccd047014113ca603e5d1d (diff) |
add prism2.5 mini-pci nic id
Diffstat (limited to 'sys/dev/ic/if_wi.c')
-rw-r--r-- | sys/dev/ic/if_wi.c | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index 24dea3e130f..931775862b4 100644 --- a/sys/dev/ic/if_wi.c +++ b/sys/dev/ic/if_wi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_wi.c,v 1.16 2001/07/08 23:38:05 fgsch Exp $ */ +/* $OpenBSD: if_wi.c,v 1.17 2001/10/25 16:39:25 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -120,7 +120,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.16 2001/07/08 23:38:05 fgsch Exp $"; + "$OpenBSD: if_wi.c,v 1.17 2001/10/25 16:39:25 mickey Exp $"; #endif /* lint */ #ifdef foo @@ -1573,6 +1573,10 @@ wi_get_id(sc, print_cis) p = "PRISM 2.5 ISL3873"; sc->sc_prism2 = 1; break; + case WI_NIC_3874A: + p = "PRISM 2.5 ISL3874A(PCI)"; + sc->sc_prism2 = 1; + break; default: p = "Lucent chip or unknown chip"; sc->sc_prism2 = 0; |