Browse Source

qcacld-3.0: Support to tx probe request frame

It just support to tx probe respnse and action frames currently. So
add this change to support to tx probe reqest frame.

Change-Id: I4899eeca80958990aff2ec5eac3226f9a37ccbf3
CRs-Fixed: 2481346
Wu Gao 5 years ago
parent
commit
cb70c0d571
1 changed files with 5 additions and 5 deletions
  1. 5 5
      components/p2p/core/src/wlan_p2p_off_chan_tx.c

+ 5 - 5
components/p2p/core/src/wlan_p2p_off_chan_tx.c

@@ -721,11 +721,6 @@ static QDF_STATUS p2p_get_frame_info(uint8_t *data_buf, uint32_t length,
 	}
 
 	frame_info->type = P2P_FRAME_MGMT;
-	if (sub_type != P2P_MGMT_PROBE_RSP &&
-		sub_type != P2P_MGMT_ACTION) {
-		p2p_err("not support sub type");
-		return QDF_STATUS_E_FAILURE;
-	}
 
 	if (sub_type == P2P_MGMT_PROBE_RSP) {
 		frame_info->sub_type = P2P_MGMT_PROBE_RSP;
@@ -739,6 +734,11 @@ static QDF_STATUS p2p_get_frame_info(uint8_t *data_buf, uint32_t length,
 		return QDF_STATUS_SUCCESS;
 	}
 
+	if (sub_type != P2P_MGMT_ACTION) {
+		p2p_debug("not support sub type");
+		return QDF_STATUS_E_FAILURE;
+	}
+
 	frame_info->sub_type = P2P_MGMT_ACTION;
 	buf += P2P_ACTION_OFFSET;
 	if (length > P2P_PUBLIC_ACTION_FRAME_TYPE_OFFSET &&