From af7379f8c46cdd77c91f9cb4d2f99ddff363931e Mon Sep 17 00:00:00 2001 From: Aditya Sathish Date: Mon, 18 Oct 2021 18:41:54 +0530 Subject: [PATCH] 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 --- umac/cmn_services/utils/src/wlan_utility.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/umac/cmn_services/utils/src/wlan_utility.c b/umac/cmn_services/utils/src/wlan_utility.c index 20ac8dd189..7a6cb3aa39 100644 --- a/umac/cmn_services/utils/src/wlan_utility.c +++ b/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;