qcacld-3.0: Fix early stop scan threshold values
Currently we are reading early stop scan min and max threshold to unsigned int, because of which we are sending wrong values to FW. Read early stop scan threshold min and max values to signed int to send correct values to FW. Change-Id: I2e96b3c3e9fb48352d8075a4e7a96eae41dacedc CRs-Fixed: 3191076
This commit is contained in:

committed by
Madan Koyyalamudi

parent
55bb17fe85
commit
389655e402
@@ -1897,8 +1897,8 @@ struct wlan_mlme_lfr_cfg {
|
||||
uint8_t mawc_roam_rssi_low_adjust;
|
||||
uint32_t roam_rssi_abs_threshold;
|
||||
uint8_t rssi_threshold_offset_5g;
|
||||
uint8_t early_stop_scan_min_threshold;
|
||||
uint8_t early_stop_scan_max_threshold;
|
||||
int8_t early_stop_scan_min_threshold;
|
||||
int8_t early_stop_scan_max_threshold;
|
||||
uint32_t roam_dense_traffic_threshold;
|
||||
uint32_t roam_dense_rssi_thre_offset;
|
||||
uint32_t roam_dense_min_aps;
|
||||
|
Reference in New Issue
Block a user