Message ID | 20200908190323.15814-16-thomas@adapt-ip.com (mailing list archive) |
---|---|
State | Changes Requested |
Delegated to: | Johannes Berg |
Headers | show |
Series | add support for S1G association | expand |
diff --git a/net/mac80211/tx.c b/net/mac80211/tx.c index d2136007e2eb..bef19616c5f0 100644 --- a/net/mac80211/tx.c +++ b/net/mac80211/tx.c @@ -82,6 +82,10 @@ static __le16 ieee80211_duration(struct ieee80211_tx_data *tx, erp = txrate->flags & IEEE80211_RATE_ERP_G; + /* TODO */ + if (sband->band == NL80211_BAND_S1GHZ) + return 0; + /* * data and mgmt (except PS Poll): * - during CFP: 32768
For now just skip the duration calculation for frames transmitted on the S1G band and avoid a warning. Signed-off-by: Thomas Pedersen <thomas@adapt-ip.com> --- net/mac80211/tx.c | 4 ++++ 1 file changed, 4 insertions(+)