Forráskód Böngészése

qcacld-3.0: Use proper center frequency for get_channel req

Currently if connection is in 5 GHz connection channel and 160 MHz
channel width, host always fills center frequency as 0 in response
of "get channel" request. This results disconnection triggered
by kernel.

Fix is to use proper center frequency present in vdev mlme
structure (vdev->vdev_mlme.des_chan->ch_cfreq2).

Change-Id: Ied59288b2047d9fd0e86d829a21890f4f031b320
CRs-Fixed: 3731341
Abhinav Kumar 1 éve
szülő
commit
09acbde881
1 módosított fájl, 2 hozzáadás és 1 törlés
  1. 2 1
      core/hdd/src/wlan_hdd_cfg80211.c

+ 2 - 1
core/hdd/src/wlan_hdd_cfg80211.c

@@ -28716,7 +28716,7 @@ static int wlan_hdd_cfg80211_get_vdev_chan_info(struct hdd_context *hdd_ctx,
 	des_chan = wlan_vdev_mlme_get_des_chan(vdev);
 	chan_info->ch_freq = des_chan->ch_freq;
 	chan_info->ch_cfreq1 = des_chan->ch_cfreq1;
-	chan_info->ch_cfreq2 = 0;
+	chan_info->ch_cfreq2 = des_chan->ch_cfreq2;
 	chan_info->ch_width = des_chan->ch_width;
 
 	sta_ctx = WLAN_HDD_GET_STATION_CTX_PTR(link_info);
@@ -28733,6 +28733,7 @@ static int wlan_hdd_cfg80211_get_vdev_chan_info(struct hdd_context *hdd_ctx,
 						&ch_params,
 						REG_CURRENT_PWR_MODE);
 	chan_info->ch_cfreq1 = ch_params.mhz_freq_seg0;
+	chan_info->ch_cfreq2 = ch_params.mhz_freq_seg1;
 
 	hdd_debug("vdev: %d, freq: %d, freq1: %d, freq2: %d, ch_width: %d",
 		  vdev_id, chan_info->ch_freq, chan_info->ch_cfreq1,