Skip to content

Commit

Permalink
Add ht_caps flags.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsm222 committed Jan 11, 2025
1 parent 2a8eddb commit bc063b5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion if_mtw.c
Original file line number Diff line number Diff line change
Expand Up @@ -616,7 +616,11 @@ mtw_attach(device_t self)
IEEE80211_C_WME | /* WME */
IEEE80211_C_WPA; /* WPA1|WPA2(RSN) */
device_printf(sc->sc_dev, "[HT] Enabling 802.11n\n");
ic->ic_htcaps = IEEE80211_HTC_HT;
ic->ic_htcaps = IEEE80211_HTC_HT
| IEEE80211_HTC_AMPDU
| IEEE80211_HTC_AMSDU
| IEEE80211_HTCAP_MAXAMSDU_3839
| IEEE80211_HTCAP_SMPS_OFF;

ic->ic_rxstream = sc->nrxchains;
ic->ic_txstream = sc->ntxchains;
Expand Down

0 comments on commit bc063b5

Please sign in to comment.