|
@@ -22529,8 +22529,6 @@ static int __wlan_hdd_cfg80211_set_mon_ch(struct wiphy *wiphy,
|
|
|
mac_handle_t mac_handle;
|
|
|
struct qdf_mac_addr bssid;
|
|
|
struct csr_roam_profile roam_profile;
|
|
|
- struct ch_params ch_params;
|
|
|
- uint8_t sec_ch = 0;
|
|
|
int ret;
|
|
|
uint16_t chan_num = cds_freq_to_chan(chandef->chan->center_freq);
|
|
|
enum channel_state chan_freq_state;
|
|
@@ -22565,6 +22563,12 @@ static int __wlan_hdd_cfg80211_set_mon_ch(struct wiphy *wiphy,
|
|
|
/* Verify the BW before accepting this request */
|
|
|
ch_width = hdd_map_nl_chan_width(chandef->width);
|
|
|
|
|
|
+ if (ch_width > CH_WIDTH_10MHZ ||
|
|
|
+ (!cds_is_sub_20_mhz_enabled() && ch_width > CH_WIDTH_160MHZ)) {
|
|
|
+ hdd_err("invalid BW received %d", ch_width);
|
|
|
+ return -EINVAL;
|
|
|
+ }
|
|
|
+
|
|
|
max_fw_bw = sme_get_vht_ch_width();
|
|
|
|
|
|
if ((ch_width == CH_WIDTH_160MHZ &&
|
|
@@ -22587,26 +22591,13 @@ static int __wlan_hdd_cfg80211_set_mon_ch(struct wiphy *wiphy,
|
|
|
qdf_mem_copy(bssid.bytes, adapter->mac_addr.bytes,
|
|
|
QDF_MAC_ADDR_SIZE);
|
|
|
|
|
|
- ch_params.ch_width = ch_width;
|
|
|
- /*
|
|
|
- * CDS api expects secondary channel for calculating
|
|
|
- * the channel params
|
|
|
- */
|
|
|
- if ((ch_params.ch_width == CH_WIDTH_40MHZ) &&
|
|
|
- (WLAN_REG_IS_24GHZ_CH(chan_num))) {
|
|
|
- if (chan_num >= 1 && chan_num <= 5)
|
|
|
- sec_ch = chan_num + 4;
|
|
|
- else if (chan_num >= 6 && chan_num <= 13)
|
|
|
- sec_ch = chan_num - 4;
|
|
|
- }
|
|
|
- wlan_reg_set_channel_params(hdd_ctx->pdev, chan_num,
|
|
|
- sec_ch, &ch_params);
|
|
|
if (wlan_hdd_change_hw_mode_for_given_chnl(adapter, chan_num,
|
|
|
POLICY_MGR_UPDATE_REASON_SET_OPER_CHAN)) {
|
|
|
hdd_err("Failed to change hw mode");
|
|
|
return -EINVAL;
|
|
|
}
|
|
|
- status = sme_roam_channel_change_req(mac_handle, bssid, &ch_params,
|
|
|
+ status = sme_roam_channel_change_req(mac_handle, bssid,
|
|
|
+ &roam_profile.ch_params,
|
|
|
&roam_profile);
|
|
|
if (status) {
|
|
|
hdd_err("Failed to set sme_RoamChannel for monitor mode status: %d",
|