mutex_unlock(&ar->conf_mutex);
 }
 
+static void ath10k_recalculate_mgmt_rate(struct ath10k *ar,
+                                        struct ieee80211_vif *vif,
+                                        struct cfg80211_chan_def *def)
+{
+       struct ath10k_vif *arvif = (void *)vif->drv_priv;
+       const struct ieee80211_supported_band *sband;
+       u8 basic_rate_idx;
+       int hw_rate_code;
+       u32 vdev_param;
+       u16 bitrate;
+       int ret;
+
+       lockdep_assert_held(&ar->conf_mutex);
+
+       sband = ar->hw->wiphy->bands[def->chan->band];
+       basic_rate_idx = ffs(vif->bss_conf.basic_rates) - 1;
+       bitrate = sband->bitrates[basic_rate_idx].bitrate;
+
+       hw_rate_code = ath10k_mac_get_rate_hw_value(bitrate);
+       if (hw_rate_code < 0) {
+               ath10k_warn(ar, "bitrate not supported %d\n", bitrate);
+               return;
+       }
+
+       vdev_param = ar->wmi.vdev_param->mgmt_rate;
+       ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
+                                       hw_rate_code);
+       if (ret)
+               ath10k_warn(ar, "failed to set mgmt tx rate %d\n", ret);
+}
+
 static void ath10k_bss_info_changed(struct ieee80211_hw *hw,
                                    struct ieee80211_vif *vif,
                                    struct ieee80211_bss_conf *info,
        struct cfg80211_chan_def def;
        u32 vdev_param, pdev_param, slottime, preamble;
        u16 bitrate, hw_value;
-       u8 rate, basic_rate_idx, rateidx;
-       int ret = 0, hw_rate_code, mcast_rate;
+       u8 rate, rateidx;
+       int ret = 0, mcast_rate;
        enum nl80211_band band;
-       const struct ieee80211_supported_band *sband;
 
        mutex_lock(&ar->conf_mutex);
 
                                    arvif->vdev_id,  ret);
        }
 
-       if (changed & BSS_CHANGED_BASIC_RATES) {
-               if (ath10k_mac_vif_chan(vif, &def)) {
-                       mutex_unlock(&ar->conf_mutex);
-                       return;
-               }
-
-               sband = ar->hw->wiphy->bands[def.chan->band];
-               basic_rate_idx = ffs(vif->bss_conf.basic_rates) - 1;
-               bitrate = sband->bitrates[basic_rate_idx].bitrate;
-
-               hw_rate_code = ath10k_mac_get_rate_hw_value(bitrate);
-               if (hw_rate_code < 0) {
-                       ath10k_warn(ar, "bitrate not supported %d\n", bitrate);
-                       mutex_unlock(&ar->conf_mutex);
-                       return;
-               }
-
-               vdev_param = ar->wmi.vdev_param->mgmt_rate;
-               ret = ath10k_wmi_vdev_set_param(ar, arvif->vdev_id, vdev_param,
-                                               hw_rate_code);
-               if (ret)
-                       ath10k_warn(ar, "failed to set mgmt tx rate %d\n", ret);
-       }
+       if (changed & BSS_CHANGED_BASIC_RATES &&
+           !ath10k_mac_vif_chan(arvif->vif, &def))
+               ath10k_recalculate_mgmt_rate(ar, vif, &def);
 
        mutex_unlock(&ar->conf_mutex);
 }