wifi: mt76: mt7925: extend mt7925_mcu_bss_qos_tlv for per-link BSS
authorSean Wang <sean.wang@mediatek.com>
Thu, 13 Jun 2024 03:02:06 +0000 (20:02 -0700)
committerFelix Fietkau <nbd@nbd.name>
Tue, 9 Jul 2024 21:01:50 +0000 (23:01 +0200)
Extend mt7925_mcu_bss_qos_tlv with per-link BSS configuration.

The patch we created is a prerequisite to enable the MLO function in the
driver. It is purely a refactoring patch so the functionality should
remain unchanged.

Co-developed-by: Deren Wu <deren.wu@mediatek.com>
Signed-off-by: Deren Wu <deren.wu@mediatek.com>
Signed-off-by: Sean Wang <sean.wang@mediatek.com>
Link: https://patch.msgid.link/20240613030241.5771-13-sean.wang@kernel.org
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7925/mcu.c

index 5332144030087b48e0c3014f5a885c7da3d165fc..d6a590061e363aac475e70797898de1950ca1938 100644 (file)
@@ -2227,14 +2227,14 @@ mt7925_mcu_bss_mld_tlv(struct sk_buff *skb,
 }
 
 static void
-mt7925_mcu_bss_qos_tlv(struct sk_buff *skb, struct ieee80211_vif *vif)
+mt7925_mcu_bss_qos_tlv(struct sk_buff *skb, struct ieee80211_bss_conf *link_conf)
 {
        struct mt76_connac_bss_qos_tlv *qos;
        struct tlv *tlv;
 
        tlv = mt76_connac_mcu_add_tlv(skb, UNI_BSS_INFO_QBSS, sizeof(*qos));
        qos = (struct mt76_connac_bss_qos_tlv *)tlv;
-       qos->qos = vif->bss_conf.qos;
+       qos->qos = link_conf->qos;
 }
 
 static void
@@ -2336,7 +2336,7 @@ int mt7925_mcu_add_bss_info(struct mt792x_phy *phy,
        mt7925_mcu_bss_sec_tlv(skb, link_conf->vif);
 
        mt7925_mcu_bss_bmc_tlv(skb, phy, ctx, link_conf->vif, sta);
-       mt7925_mcu_bss_qos_tlv(skb, link_conf->vif);
+       mt7925_mcu_bss_qos_tlv(skb, link_conf);
        mt7925_mcu_bss_mld_tlv(skb, link_conf->vif, sta);
        mt7925_mcu_bss_ifs_tlv(skb, link_conf);