|
@@ -499,6 +499,7 @@ bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats,
|
|
|
&& (GET_RX_DESC_FAGGR(pdesc) == 1));
|
|
|
stats->timestamp_low = GET_RX_DESC_TSFL(pdesc);
|
|
|
stats->rx_is40Mhzpacket = (bool) GET_RX_DESC_BW(pdesc);
|
|
|
+ stats->is_ht = (bool)GET_RX_DESC_RXHT(pdesc);
|
|
|
rx_status->freq = hw->conf.chandef.chan->center_freq;
|
|
|
rx_status->band = hw->conf.chandef.chan->band;
|
|
|
if (GET_RX_DESC_CRC32(pdesc))
|
|
@@ -512,9 +513,8 @@ bool rtl92de_rx_query_desc(struct ieee80211_hw *hw, struct rtl_stats *stats,
|
|
|
rx_status->flag |= RX_FLAG_MACTIME_START;
|
|
|
if (stats->decrypted)
|
|
|
rx_status->flag |= RX_FLAG_DECRYPTED;
|
|
|
- rx_status->rate_idx = rtlwifi_rate_mapping(hw,
|
|
|
- (bool)GET_RX_DESC_RXHT(pdesc),
|
|
|
- (u8)GET_RX_DESC_RXMCS(pdesc));
|
|
|
+ rx_status->rate_idx = rtlwifi_rate_mapping(hw, stats->is_ht,
|
|
|
+ stats->rate);
|
|
|
rx_status->mactime = GET_RX_DESC_TSFL(pdesc);
|
|
|
if (phystatus) {
|
|
|
p_drvinfo = (struct rx_fwinfo_92d *)(skb->data +
|