Disable this code and add a note as to why.

It wasn't currently being called anyway - but being explicit about it
can't hurt.
This commit is contained in:
Adrian Chadd 2013-02-18 01:08:59 +00:00
parent fc23011bc3
commit 32d384a45c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=246927

View File

@ -768,8 +768,23 @@ adhoc_recv_mgmt(struct ieee80211_node *ni, struct mbuf *m0,
IEEE80211_RSSI_LPF(ni->ni_avgrssi, rssi);
ni->ni_noise = nf;
}
/*
* Same here - the channel width change should
* be applied to the specific peer node, not
* to the ic. Ie, the interface configuration
* should stay in its current channel width;
* but it should change the rate control and
* any queued frames for the given node only.
*
* Since there's no (current) way to inform
* the driver that a channel width change has
* occured for a single node, just stub this
* out.
*/
#if 0
if (ht_state_change)
ieee80211_update_chw(ic);
#endif
}
break;
}