Patch "wifi: mt76: mt7915: Fix chainmask calculation on mt7915 DBDC" has been added to the 6.0-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    wifi: mt76: mt7915: Fix chainmask calculation on mt7915 DBDC

to the 6.0-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     wifi-mt76-mt7915-fix-chainmask-calculation-on-mt7915.patch
and it can be found in the queue-6.0 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 551f9039cfb50a892e15495a286b2b5cc76e76db
Author: Nicolas Cavallari <nicolas.cavallari@xxxxxxxxxxxxxxxxxxxxxxx>
Date:   Thu Nov 10 16:39:51 2022 +0100

    wifi: mt76: mt7915: Fix chainmask calculation on mt7915 DBDC
    
    [ Upstream commit de147cc28985a2a09e5d6d179fc5ef59b22fc058 ]
    
    mt7915 does not have a per-band number of chains unlike the other chips,
    it only has a total number of chains.  Yet the current code would
    consider the total number as a per-band number.
    
    For example, it would report that a 2x2 + 2x2 DBDC card have 4 chains on
    each band and set chainmask to 0b1111 for the first interface and
    0b11110000 for the second.
    
    Fixes: 99ad32a4ca3a ("mt76: mt7915: add support for MT7986")
    Co-developed-by: Felix Fietkau <nbd@xxxxxxxx>
    Signed-off-by: Nicolas Cavallari <nicolas.cavallari@xxxxxxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Felix Fietkau <nbd@xxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c b/drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c
index 83bced0c0785..0bce0ce51be0 100644
--- a/drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c
+++ b/drivers/net/wireless/mediatek/mt76/mt7915/eeprom.c
@@ -194,6 +194,7 @@ void mt7915_eeprom_parse_hw_cap(struct mt7915_dev *dev,
 	nss = path;
 	if (dev->dbdc_support) {
 		if (is_mt7915(&dev->mt76)) {
+			path = min_t(u8, path, 2);
 			nss = FIELD_GET(MT_EE_WIFI_CONF3_TX_PATH_B0,
 					eeprom[MT_EE_WIFI_CONF + 3]);
 			if (phy->band_idx)



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux