qcacld-3.0: Remove check for IBSS in lim_process_assoc_rsp_frame

IBSS capability information bit is valid only for beacon
and probe response. So, ignore it in association response.

Change-Id: I3495d697ac726f494234900178abb1531e1912cb
CRs-Fixed: 2703576
This commit is contained in:
Utkarsh Bhatnagar 2020-06-08 12:02:34 +05:30 committed by nshrivas
parent a6afc073d0
commit 0f2b6666fe

View File

@ -774,19 +774,6 @@ lim_process_assoc_rsp_frame(struct mac_context *mac_ctx,
lim_update_ese_tspec(mac_ctx, session_entry, assoc_rsp);
#endif
if (assoc_rsp->capabilityInfo.ibss) {
/*
* Received Re/Association Response from peer
* with IBSS capability set.
* Ignore the frame and wait until Re/assoc
* failure timeout.
*/
pe_err("received Re/AssocRsp frame with IBSS capability");
qdf_mem_free(assoc_rsp);
qdf_mem_free(beacon);
return;
}
if (lim_get_capability_info(mac_ctx, &caps, session_entry)
!= QDF_STATUS_SUCCESS) {
qdf_mem_free(assoc_rsp);