diff options
author | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-28 17:41:03 +0000 |
---|---|---|
committer | Michael Shalayeff <mickey@cvs.openbsd.org> | 2002-03-28 17:41:03 +0000 |
commit | f8d04b8558479f481f380a7c4c76e010048394f5 (patch) | |
tree | 5f34dfb385b614617992cf76248ccf3bf8b9e8d3 /sys/dev/ic/if_wi.c | |
parent | 8393408cf4f14b3eddf634084f3362cc4703831e (diff) |
recognize isl37300p as a prism2.5, for niels baby
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 c4c5724f2ec..a8bf19ceeb1 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.23 2002/03/26 18:59:11 millert Exp $ */ +/* $OpenBSD: if_wi.c,v 1.24 2002/03/28 17:41:02 mickey Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -122,7 +122,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.23 2002/03/26 18:59:11 millert Exp $"; + "$OpenBSD: if_wi.c,v 1.24 2002/03/28 17:41:02 mickey Exp $"; #endif /* lint */ #ifdef foo @@ -1664,6 +1664,10 @@ wi_get_id(sc, print_cis) p = "PRISM 2.5 ISL3874A(PCI)"; sc->sc_prism2 = 1; break; + case WI_NIC_37300P: + p = "PRISM 2.5 ISL37300P"; + sc->sc_prism2 = 1; + break; default: p = "Lucent chip or unknown chip"; sc->sc_prism2 = 0; |