浏览代码

qcacmn: Fix channel conversion utility functions

Update wlan_chan_to_freq and wlan_freq_to_chan utility functions to
handle invalid channel number and freq value of 0 respectively.

Change-Id: I92e2d5026bb93439b77b749d447654ceb9413fde
CRs-fixed: 2546771
Manikandan Mohan 5 年之前
父节点
当前提交
ae310478dd
共有 1 个文件被更改,包括 6 次插入1 次删除
  1. 6 1
      umac/cmn_services/utils/src/wlan_utility.c

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

@@ -28,7 +28,9 @@
 
 uint32_t wlan_chan_to_freq(uint8_t chan)
 {
-	/* ch 0 - ch 13 */
+	if (chan == 0 )
+		return 0;
+
 	if (chan < WLAN_24_GHZ_CHANNEL_14)
 		return WLAN_24_GHZ_BASE_FREQ + chan * WLAN_CHAN_SPACING_5MHZ;
 	else if (chan == WLAN_24_GHZ_CHANNEL_14)
@@ -47,6 +49,9 @@ uint8_t wlan_freq_to_chan(uint32_t freq)
 {
 	uint8_t chan;
 
+	if (freq == 0)
+		return 0;
+
 	if (freq > WLAN_24_GHZ_BASE_FREQ && freq < WLAN_CHAN_14_FREQ)
 		chan = ((freq - WLAN_24_GHZ_BASE_FREQ) /
 			WLAN_CHAN_SPACING_5MHZ);