Skip to content

Commit

Permalink
Merge tag 'LA.UM.10.2.1.r1-03800-sdm660.0' of https://git.codelinaro.…
Browse files Browse the repository at this point in the history
…org/clo/la/platform/vendor/qcom-opensource/wlan/qcacld-3.0 into 11-qtih

"LA.UM.10.2.1.r1-03800-sdm660.0"
  • Loading branch information
Anush02198 committed Oct 4, 2022
2 parents 9ee8150 + 0daae1b commit 7f81bee
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2650,9 +2650,11 @@ lim_add_sta(struct mac_context *mac_ctx,
assoc_req =
(tpSirAssocReq) session_entry->parsedAssocReq[aid];

add_sta_params->wpa_rsn = assoc_req->rsnPresent;
add_sta_params->wpa_rsn |=
(assoc_req->wpaPresent << 1);
if (assoc_req) {
add_sta_params->wpa_rsn = assoc_req->rsnPresent;
add_sta_params->wpa_rsn |=
(assoc_req->wpaPresent << 1);
}
}
}

Expand Down

0 comments on commit 7f81bee

Please sign in to comment.