Parcourir la source

qcacmn: Fix band scoring logic for 5Ghz channels

Use proper macro to check if channel is 5Ghz while calculating the
band scoring logic for 5Ghz channels.

Change-Id: Ib394f3ed0db6c64286a44b15c38fa3ffdcf8bdfb
CRs-Fixed: 2205658
Abhishek Singh il y a 7 ans
Parent
commit
93809fdc42
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. 1 1
      umac/scan/core/src/wlan_scan_bss_score.c

+ 1 - 1
umac/scan/core/src/wlan_scan_bss_score.c

@@ -735,7 +735,7 @@ int scm_calculate_bss_score(struct wlan_objmgr_psoc *psoc,
 	 * else give weigtage to 2.4 GH.
 	 */
 	if ((entry->rssi_raw > rssi_pref_5g_rssi_thresh) && !same_bucket) {
-		if (WLAN_CHAN_IS_2GHZ(entry->channel.chan_idx))
+		if (WLAN_CHAN_IS_5GHZ(entry->channel.chan_idx))
 			band_score = weight_config->chan_band_weightage *
 					WLAN_GET_SCORE_PERCENTAGE(
 					score_config->band_weight_per_index,