Browse Source

qcacmn: Use configured value for channel_prediction

The scan component is currently using an unrelated field to populate
the PNO channel prediction enabled field sent to firmware. Use
channel_prediction instead.

Change-Id: I88b066c1b61e7ce49fcee889dfed9b1208d2862f
CRs-Fixed: 2252153
Dustin Brown 6 years ago
parent
commit
03f2ec07f7
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/scan/dispatcher/src/wlan_scan_ucfg_api.c

+ 1 - 1
umac/scan/dispatcher/src/wlan_scan_ucfg_api.c

@@ -330,7 +330,7 @@ ucfg_scan_get_pno_def_params(struct wlan_objmgr_vdev *vdev,
 	 */
 	ucfg_scan_update_pno_dwell_time(vdev, req, scan_def);
 	req->adaptive_dwell_mode = pno_def->adaptive_dwell_mode;
-	req->pno_channel_prediction = pno_def->adaptive_dwell_mode;
+	req->pno_channel_prediction = pno_def->channel_prediction;
 	req->top_k_num_of_channels = pno_def->top_k_num_of_channels;
 	req->stationary_thresh = pno_def->stationary_thresh;
 	req->channel_prediction_full_scan =