|
@@ -9016,6 +9016,21 @@ void lim_log_eht_op(struct mac_context *mac, tDot11fIEeht_op *eht_ops,
|
|
|
eht_ops, sizeof(tDot11fIEeht_op));
|
|
|
}
|
|
|
|
|
|
+static void
|
|
|
+lim_revise_eht_caps(struct mac_context *mac, tDot11fIEeht_cap *eht_cap)
|
|
|
+{
|
|
|
+ uint32_t country_max_allowed_bw;
|
|
|
+
|
|
|
+ country_max_allowed_bw = wlan_reg_get_country_max_allowed_bw(mac->pdev);
|
|
|
+ if (!country_max_allowed_bw) {
|
|
|
+ pe_debug("Failed to get country_max_allowed_bw");
|
|
|
+ return;
|
|
|
+ }
|
|
|
+
|
|
|
+ if (country_max_allowed_bw < BW_320_MHZ)
|
|
|
+ eht_cap->support_320mhz_6ghz = 0;
|
|
|
+}
|
|
|
+
|
|
|
void lim_set_eht_caps(struct mac_context *mac,
|
|
|
uint8_t *ie_start, uint32_t num_bytes, uint8_t band,
|
|
|
uint8_t vdev_id)
|
|
@@ -9035,6 +9050,7 @@ void lim_set_eht_caps(struct mac_context *mac,
|
|
|
is_band_2g = true;
|
|
|
|
|
|
populate_dot11f_eht_caps_by_band(mac, is_band_2g, &dot11_cap, NULL);
|
|
|
+ lim_revise_eht_caps(mac, &dot11_cap);
|
|
|
populate_dot11f_he_caps_by_band(mac, is_band_2g, &dot11_he_cap,
|
|
|
NULL);
|
|
|
lim_log_eht_cap(mac, &dot11_cap);
|