Browse Source

qcacld-3.0: Replace tpPESession in lim_process_mlm_host_roam

To align with the Linux coding style replace tpPESession with struct
pe_session * in lim_process_mlm_host_roam.

Change-Id: I7dd0f7dd45a593fc0e5e7e7bb836c0e0a97e267f
CRs-Fixed: 2354297
Jeff Johnson 6 years ago
parent
commit
32a9ef43b5
1 changed files with 6 additions and 6 deletions
  1. 6 6
      core/mac/src/pe/lim/lim_process_mlm_host_roam.c

+ 6 - 6
core/mac/src/pe/lim/lim_process_mlm_host_roam.c

@@ -44,7 +44,7 @@
 #include "wma_if.h"
 #include "rrm_api.h"
 static void lim_handle_sme_reaasoc_result(tpAniSirGlobal, tSirResultCodes,
-		uint16_t, tpPESession);
+		uint16_t, struct pe_session *);
 /**
  * lim_process_mlm_reassoc_req() - process mlm reassoc request.
  *
@@ -62,7 +62,7 @@ void lim_process_mlm_reassoc_req(tpAniSirGlobal mac_ctx,
 	uint8_t channel, sec_ch_offset;
 	struct tLimPreAuthNode *auth_node;
 	tLimMlmReassocCnf reassoc_cnf;
-	tpPESession session;
+	struct pe_session *session;
 
 	session = pe_find_session_by_session_id(mac_ctx,
 			reassoc_req->sessionId);
@@ -175,7 +175,7 @@ end:
  */
 static void lim_handle_sme_reaasoc_result(tpAniSirGlobal mac,
 		tSirResultCodes resultCode, uint16_t protStatusCode,
-		tpPESession psessionEntry)
+		struct pe_session *psessionEntry)
 {
 	tpDphHashNode pStaDs = NULL;
 	uint8_t smesessionId;
@@ -234,7 +234,7 @@ error:
  */
 void lim_process_mlm_reassoc_cnf(tpAniSirGlobal mac_ctx, uint32_t *msg_buf)
 {
-	tpPESession session;
+	struct pe_session *session;
 	tLimMlmReassocCnf *lim_mlm_reassoc_cnf;
 
 	if (msg_buf == NULL) {
@@ -347,7 +347,7 @@ void lim_process_mlm_reassoc_cnf(tpAniSirGlobal mac_ctx, uint32_t *msg_buf)
  *Return: None
  */
 void lim_process_sta_mlm_add_bss_rsp_ft(tpAniSirGlobal mac,
-		struct scheduler_msg *limMsgQ, tpPESession psessionEntry)
+		struct scheduler_msg *limMsgQ, struct pe_session *psessionEntry)
 {
 	tLimMlmReassocCnf mlmReassocCnf; /* keep sme */
 	tpDphHashNode pStaDs = NULL;
@@ -567,7 +567,7 @@ void lim_process_mlm_ft_reassoc_req(tpAniSirGlobal mac,
 				    tLimMlmReassocReq *reassoc_req)
 {
 	uint8_t chanNum = 0;
-	tpPESession session;
+	struct pe_session *session;
 	uint16_t caps;
 	uint32_t val;
 	struct scheduler_msg msgQ = {0};