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
This commit is contained in:
Jeff Johnson
2018-11-18 21:30:19 -08:00
committed by nshrivas
parent e8b847411a
commit 59104488cb
2 changed files with 3 additions and 3 deletions

View File

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

View File

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