svn commit: r205281 - head/sys/net80211

Rui Paulo rpaulo at FreeBSD.org
Thu Mar 18 15:28:17 UTC 2010


Author: rpaulo
Date: Thu Mar 18 15:28:17 2010
New Revision: 205281
URL: http://svn.freebsd.org/changeset/base/205281

Log:
  Unbreak build by removing a code bit that is only related to other code
  in my branch.

Modified:
  head/sys/net80211/ieee80211_ht.c

Modified: head/sys/net80211/ieee80211_ht.c
==============================================================================
--- head/sys/net80211/ieee80211_ht.c	Thu Mar 18 14:54:31 2010	(r205280)
+++ head/sys/net80211/ieee80211_ht.c	Thu Mar 18 15:28:17 2010	(r205281)
@@ -288,7 +288,7 @@ ht_announce(struct ieee80211com *ic, int
 	const struct ieee80211_htrateset *rs)
 {
 	struct ifnet *ifp = ic->ic_ifp;
-	int maxmcs = ic->ic_rxstream * 8;
+	int maxmcs = 2 * 8;
 	const char *modestr = ieee80211_phymode_name[mode];
 	
 	KASSERT(maxmcs <= 16, ("maxmcs > 16"));


More information about the svn-src-head mailing list