diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-04-01 07:12:06 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-04-01 07:12:06 +0000 |
commit | 34b96793afa78ef6e73908631d412000aa612952 (patch) | |
tree | ae12dea6a913b4849b42a2eb1c083535bc197297 /sys | |
parent | e5170ae87d4b841fd054423d3abf37d597bebbb2 (diff) |
Use WI_RID_DATA_RATES not WI_RID_SUPPORT_RATE to get the list of
supported data rates. Fixes rate probing on Lucent cards.
Figured out from reading the Linux orinoco driver.
Diffstat (limited to 'sys')
-rw-r--r-- | sys/dev/ic/if_wi.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/dev/ic/if_wi.c b/sys/dev/ic/if_wi.c index 16c6e580573..73d65167384 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.34 2002/03/31 01:01:44 millert Exp $ */ +/* $OpenBSD: if_wi.c,v 1.35 2002/04/01 07:12:05 millert Exp $ */ /* * Copyright (c) 1997, 1998, 1999 @@ -124,7 +124,7 @@ u_int32_t widebug = WIDEBUG; #if !defined(lint) && !defined(__OpenBSD__) static const char rcsid[] = - "$OpenBSD: if_wi.c,v 1.34 2002/03/31 01:01:44 millert Exp $"; + "$OpenBSD: if_wi.c,v 1.35 2002/04/01 07:12:05 millert Exp $"; #endif /* lint */ #ifdef foo @@ -255,10 +255,10 @@ wi_attach(sc, print_cis) bzero((char *)&sc->wi_stats, sizeof(sc->wi_stats)); - /* Find supported rates (appears to be prism2 only) */ - gen.wi_type = WI_RID_SUPPORT_RATE; + /* Find supported rates. */ + gen.wi_type = WI_RID_DATA_RATES; gen.wi_len = 2; - if (!sc->sc_prism2 || wi_read_record(sc, &gen)) + if (wi_read_record(sc, &gen)) sc->wi_supprates = WI_SUPPRATES_1M | WI_SUPPRATES_2M | WI_SUPPRATES_5M | WI_SUPPRATES_11M; else |