wifi: mt76: mt7996: disable UNI_BSS_INFO_PROTECT_INFO for mt7996

The current MT7996 firmware causes TX failure and need further
investigation, so it is temporarily disabled.

MT7992 and MT7990 are working normally.

Signed-off-by: Ryder Lee <ryder.lee@mediatek.com>
Link: https://patch.msgid.link/6427326eb4e8f375c63379f7a0df7e2ae9d120a4.1774458901.git.ryder.lee@mediatek.com
Signed-off-by: Felix Fietkau <nbd@nbd.name>
This commit is contained in:
Ryder Lee 2026-03-25 10:17:23 -07:00 committed by Felix Fietkau
parent f4ce0664e9
commit b7744e889f

View File

@ -1281,6 +1281,10 @@ int mt7996_mcu_set_protection(struct mt7996_phy *phy, struct mt7996_vif_link *li
PROT_NONGF_STA = BIT(7),
};
/* The current firmware causes TX failure. Need further investigation */
if (is_mt7996(&dev->mt76))
return 0;
skb = __mt7996_mcu_alloc_bss_req(&dev->mt76, &link->mt76,
MT7996_BSS_UPDATE_MAX_SIZE);
if (IS_ERR(skb))