Преглед изворни кода

qcacld-3.0: Replace tpPESession in sme

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

Change-Id: I8f716b9b29fa694182c5750d40ec9bd2ddf99fd5
CRs-Fixed: 2353398
Jeff Johnson пре 6 година
родитељ
комит
59104488cb
2 измењених фајлова са 3 додато и 3 уклоњено
  1. 1 1
      core/sme/src/common/sme_api.c
  2. 2 2
      core/sme/src/csr/csr_api_roam.c

+ 1 - 1
core/sme/src/common/sme_api.c

@@ -11223,7 +11223,7 @@ QDF_STATUS sme_update_dsc_pto_up_mapping(mac_handle_t mac_handle,
 	QDF_STATUS status = QDF_STATUS_SUCCESS;
 	uint8_t i, j, peSessionId;
 	struct csr_roam_session *pCsrSession = NULL;
-	tpPESession pSession = NULL;
+	struct pe_session *pSession = NULL;
 
 	status = sme_acquire_global_lock(&pMac->sme);
 	if (!QDF_IS_STATUS_SUCCESS(status))

+ 2 - 2
core/sme/src/csr/csr_api_roam.c

@@ -1994,7 +1994,7 @@ static void csr_send_ese_adjacent_ap_rep_ind(tpAniSirGlobal pMac,
 {
 	uint32_t roamTS2 = 0;
 	struct csr_roam_info roamInfo;
-	tpPESession pSessionEntry = NULL;
+	struct pe_session *pSessionEntry = NULL;
 	uint8_t sessionId = CSR_SESSION_ID_INVALID;
 
 	if (NULL == pSession) {
@@ -20741,7 +20741,7 @@ csr_find_session_by_type(tpAniSirGlobal mac_ctx, enum QDF_OPMODE type)
 bool
 csr_find_session_by_bssid(tpAniSirGlobal mac_ctx, uint8_t *bssid)
 {
-	tpPESession session_entry;
+	struct pe_session *session_entry;
 	uint8_t session_id;      /* PE session_id */
 
 	session_entry = pe_find_session_by_bssid(mac_ctx,