Browse Source

qcacmn: Fix the second cfreq2 for channel 33 for 320MHz

Fix the second cfreq2 frequency returned by the service
API, wlan_get_320_center_freq, for a channel ranging
between 33 (6115MHz) to 61 (6225MHz).

CRs-Fixed: 3060832
Change-Id: I656a5d6633cfa48aaeff5f0ba53e4c6138f5d8f8
Aditya Sathish 3 years ago
parent
commit
af7379f8c4
1 changed files with 1 additions and 1 deletions
  1. 1 1
      umac/cmn_services/utils/src/wlan_utility.c

+ 1 - 1
umac/cmn_services/utils/src/wlan_utility.c

@@ -85,7 +85,7 @@ wlan_get_320_center_freq(qdf_freq_t freq,
 		*center_freq1 = 6105;
 	} else if ((freq >= 6115) && (freq <= 6255)) {
 		*center_freq1 = 6105;
-		*center_freq2 = 6205;
+		*center_freq2 = 6265;
 	} else if ((freq >= 6275) && (freq <= 6415)) {
 		*center_freq1 = 6265;
 		*center_freq2 = 6425;