Browse Source

qcacld-3.0: Validate phymode before sending to firmware

Validate the phymode before sending to firmware in
lim_set_ch_phy_mode()

Change channel mode check from MODE_UNKNOWN to WLAN_PHYMODE_AUTO
or WLAN_PHYMODE_MAX

Change-Id: If7f869b750c74f9782b066f7e92b2c94c29bcbb7
CRs-Fixed: 2792691
Jyoti Kumari 4 years ago
parent
commit
52e7cbe920
2 changed files with 2 additions and 2 deletions
  1. 1 1
      core/mac/src/pe/lim/lim_utils.c
  2. 1 1
      core/wma/src/wma_features.c

+ 1 - 1
core/mac/src/pe/lim/lim_utils.c

@@ -8602,7 +8602,7 @@ QDF_STATUS lim_set_ch_phy_mode(struct wlan_objmgr_vdev *vdev, uint8_t dot11mode)
 	chan_mode = wma_chan_phy_mode(des_chan->ch_freq, ch_width,
 				      dot11mode);
 
-	if (chan_mode == MODE_UNKNOWN) {
+	if (chan_mode == WLAN_PHYMODE_AUTO || chan_mode == WLAN_PHYMODE_MAX) {
 		pe_err("Invalid phy mode!");
 		return QDF_STATUS_E_FAILURE;
 	}

+ 1 - 1
core/wma/src/wma_features.c

@@ -565,7 +565,7 @@ enum wlan_phymode wma_chan_phy_mode(uint32_t freq, enum phy_ch_width chan_width,
 	}
 
 	if (chan_width >= CH_WIDTH_INVALID) {
-		wma_err_rl("Invalid channel width");
+		wma_err_rl("Invalid channel width %d", chan_width);
 		return WLAN_PHYMODE_AUTO;
 	}