summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorReyk Floeter <reyk@cvs.openbsd.org>2006-09-19 16:46:40 +0000
committerReyk Floeter <reyk@cvs.openbsd.org>2006-09-19 16:46:40 +0000
commit7f62f54af81a466f9af098b397d13720d4f18332 (patch)
treece4a477d30c4d7eaebe08995af324d5ab464ed7b
parenta1890d4665a235fe827940778520aa0488e73f74 (diff)
"pure g" is a special, non-standard ofdm-only mode. use the standard
dynamic cck/ofdm "11g" mode instead.
-rw-r--r--sys/dev/ic/ath.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/ic/ath.c b/sys/dev/ic/ath.c
index eddf1fd0447..45baf74d351 100644
--- a/sys/dev/ic/ath.c
+++ b/sys/dev/ic/ath.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ath.c,v 1.53 2006/09/19 13:25:54 reyk Exp $ */
+/* $OpenBSD: ath.c,v 1.54 2006/09/19 16:46:39 reyk Exp $ */
/* $NetBSD: ath.c,v 1.37 2004/08/18 21:59:39 dyoung Exp $ */
/*-
@@ -670,7 +670,7 @@ ath_chan2flags(struct ieee80211com *ic, struct ieee80211_channel *chan)
case IEEE80211_MODE_11B:
return CHANNEL_B;
case IEEE80211_MODE_11G:
- return CHANNEL_PUREG;
+ return CHANNEL_G;
case IEEE80211_MODE_TURBO:
return CHANNEL_T;
default: