mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
[net80211] allow for MCS16-23 to be statically configured.
Tested: * AR9380, STA mode
This commit is contained in:
parent
68730a222d
commit
a2c31ee05e
1 changed files with 1 additions and 1 deletions
|
|
@ -2225,7 +2225,7 @@ checkmcs(int mcs)
|
|||
return 1;
|
||||
if ((mcs & IEEE80211_RATE_MCS) == 0) /* MCS always have 0x80 set */
|
||||
return 0;
|
||||
return (mcs & 0x7f) <= 15; /* XXX could search ht rate set */
|
||||
return (mcs & 0x7f) <= 31; /* XXX could search ht rate set */
|
||||
}
|
||||
|
||||
static int
|
||||
|
|
|
|||
Loading…
Reference in a new issue