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
This commit is contained in:
Wu Gao
2019-06-28 15:32:32 +08:00
committed by nshrivas
szülő 4a03124774
commit cb70c0d571

Fájl megtekintése

@@ -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 &&