wifi: mt76: mt7925: update rate index according to link id
authorSean Wang <sean.wang@mediatek.com>
Sat, 6 Jul 2024 08:28:02 +0000 (01:28 -0700)
committerFelix Fietkau <nbd@nbd.name>
Tue, 9 Jul 2024 21:02:06 +0000 (23:02 +0200)
Update rate index according to link id.

Co-developed-by: Ming Yen Hsieh <mingyen.hsieh@mediatek.com>
Signed-off-by: Ming Yen Hsieh <mingyen.hsieh@mediatek.com>
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/e0bbc0932edbd9225fe7b7736693c137cf433a52.1720248331.git.sean.wang@kernel.org
Signed-off-by: Felix Fietkau <nbd@nbd.name>
drivers/net/wireless/mediatek/mt76/mt7925/main.c

index bb8a89e08d7d31f2b228313a6286a8caff8baf36..3d23a87e9a74d713ac60bdee65f3f29ab52dd7d1 100644 (file)
@@ -1801,9 +1801,12 @@ static void mt7925_link_info_changed(struct ieee80211_hw *hw,
                                     struct ieee80211_bss_conf *info,
                                     u64 changed)
 {
-       struct mt76_vif *mvif = (struct mt76_vif *)vif->drv_priv;
+       struct mt792x_vif *mvif = (struct mt792x_vif *)vif->drv_priv;
        struct mt792x_phy *phy = mt792x_hw_phy(hw);
        struct mt792x_dev *dev = mt792x_hw_dev(hw);
+       struct mt792x_bss_conf *mconf;
+
+       mconf = mt792x_vif_to_link(mvif, info->link_id);
 
        mt792x_mutex_acquire(dev);
 
@@ -1817,16 +1820,16 @@ static void mt7925_link_info_changed(struct ieee80211_hw *hw,
        }
 
        if (changed & BSS_CHANGED_MCAST_RATE)
-               mvif->mcast_rates_idx =
+               mconf->mt76.mcast_rates_idx =
                                mt7925_get_rates_table(hw, vif, false, true);
 
        if (changed & BSS_CHANGED_BASIC_RATES)
-               mvif->basic_rates_idx =
+               mconf->mt76.basic_rates_idx =
                                mt7925_get_rates_table(hw, vif, false, false);
 
        if (changed & (BSS_CHANGED_BEACON |
                       BSS_CHANGED_BEACON_ENABLED)) {
-               mvif->beacon_rates_idx =
+               mconf->mt76.beacon_rates_idx =
                                mt7925_get_rates_table(hw, vif, true, false);
 
                mt7925_mcu_uni_add_beacon_offload(dev, hw, vif,