Skip to content

Commit 3b9fb67

Browse files
0xB0DKalle Valo
authored andcommitted
wcn36xx: Fix reported 802.11n rx_highest rate wcn3660/wcn3680
Qualcomm's document "80-WL007-1 Rev. J" states that the highest rx rate for the WCN3660 and WCN3680 on MCS 7 is 150 Mbps not the 72 Mbps stated here. This patch fixes the data-rate declared in the 5GHz table. Fixes: 8e84c25 ("wcn36xx: mac80211 driver for Qualcomm WCN3660/WCN3680 hardware") Signed-off-by: Bryan O'Donoghue <[email protected]> Signed-off-by: Kalle Valo <[email protected]> Link: https://lore.kernel.org/r/[email protected]
1 parent 454530a commit 3b9fb67

File tree

1 file changed

+1
-1
lines changed
  • drivers/net/wireless/ath/wcn36xx

1 file changed

+1
-1
lines changed

drivers/net/wireless/ath/wcn36xx/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ static struct ieee80211_supported_band wcn_band_5ghz = {
163163
.ampdu_density = IEEE80211_HT_MPDU_DENSITY_16,
164164
.mcs = {
165165
.rx_mask = { 0xff, 0, 0, 0, 0, 0, 0, 0, 0, 0, },
166-
.rx_highest = cpu_to_le16(72),
166+
.rx_highest = cpu_to_le16(150),
167167
.tx_params = IEEE80211_HT_MCS_TX_DEFINED,
168168
}
169169
}

0 commit comments

Comments
 (0)