qcacld-3.0: Replace tpPESession in lim_send_sme_rsp_messages
To align with the Linux coding style replace tpPESession with struct pe_session * in lim_send_sme_rsp_messages. Change-Id: I2b55ab412988dedd8d4edacb82f7008dcf90a6fe CRs-Fixed: 2354271
This commit is contained in:
@@ -58,7 +58,7 @@
|
|||||||
#include "wma.h"
|
#include "wma.h"
|
||||||
|
|
||||||
static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
|
static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
|
||||||
tpPESession session_entry, tSirResultCodes result_code,
|
struct pe_session *session_entry, tSirResultCodes result_code,
|
||||||
tpSirSmeJoinRsp sme_join_rsp);
|
tpSirSmeJoinRsp sme_join_rsp);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -249,7 +249,7 @@ static void lim_send_sme_join_reassoc_rsp_after_resume(tpAniSirGlobal mac_ctx,
|
|||||||
* Return: None
|
* Return: None
|
||||||
*/
|
*/
|
||||||
static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
|
static void lim_handle_join_rsp_status(tpAniSirGlobal mac_ctx,
|
||||||
tpPESession session_entry, tSirResultCodes result_code,
|
struct pe_session *session_entry, tSirResultCodes result_code,
|
||||||
tpSirSmeJoinRsp sme_join_rsp)
|
tpSirSmeJoinRsp sme_join_rsp)
|
||||||
{
|
{
|
||||||
uint16_t bss_ie_len;
|
uint16_t bss_ie_len;
|
||||||
@@ -442,14 +442,14 @@ static void lim_add_bss_info(tpDphHashNode sta_ds, tpSirSmeJoinRsp sme_join_rsp)
|
|||||||
|
|
||||||
#ifdef WLAN_FEATURE_FILS_SK
|
#ifdef WLAN_FEATURE_FILS_SK
|
||||||
static void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
|
static void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
|
||||||
tpPESession session_entry)
|
struct pe_session *session_entry)
|
||||||
{
|
{
|
||||||
sme_join_rsp->fils_seq_num =
|
sme_join_rsp->fils_seq_num =
|
||||||
session_entry->fils_info->sequence_number;
|
session_entry->fils_info->sequence_number;
|
||||||
}
|
}
|
||||||
#else
|
#else
|
||||||
static inline void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
|
static inline void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
|
||||||
tpPESession session_entry)
|
struct pe_session *session_entry)
|
||||||
{}
|
{}
|
||||||
#endif
|
#endif
|
||||||
/**
|
/**
|
||||||
@@ -473,7 +473,7 @@ static inline void lim_update_fils_seq_num(tpSirSmeJoinRsp sme_join_rsp,
|
|||||||
void
|
void
|
||||||
lim_send_sme_join_reassoc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
|
lim_send_sme_join_reassoc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
|
||||||
tSirResultCodes result_code, uint16_t prot_status_code,
|
tSirResultCodes result_code, uint16_t prot_status_code,
|
||||||
tpPESession session_entry, uint8_t sme_session_id,
|
struct pe_session *session_entry, uint8_t sme_session_id,
|
||||||
uint16_t sme_transaction_id)
|
uint16_t sme_transaction_id)
|
||||||
{
|
{
|
||||||
tpSirSmeJoinRsp sme_join_rsp;
|
tpSirSmeJoinRsp sme_join_rsp;
|
||||||
@@ -603,7 +603,7 @@ lim_send_sme_join_reassoc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
|
|||||||
void
|
void
|
||||||
lim_send_sme_start_bss_rsp(tpAniSirGlobal mac,
|
lim_send_sme_start_bss_rsp(tpAniSirGlobal mac,
|
||||||
uint16_t msgType, tSirResultCodes resultCode,
|
uint16_t msgType, tSirResultCodes resultCode,
|
||||||
tpPESession psessionEntry, uint8_t smesessionId,
|
struct pe_session *psessionEntry, uint8_t smesessionId,
|
||||||
uint16_t smetransactionId)
|
uint16_t smetransactionId)
|
||||||
{
|
{
|
||||||
|
|
||||||
@@ -780,7 +780,7 @@ lim_send_sme_disassoc_ntf(tpAniSirGlobal mac,
|
|||||||
uint16_t disassocTrigger,
|
uint16_t disassocTrigger,
|
||||||
uint16_t aid,
|
uint16_t aid,
|
||||||
uint8_t smesessionId,
|
uint8_t smesessionId,
|
||||||
uint16_t smetransactionId, tpPESession psessionEntry)
|
uint16_t smetransactionId, struct pe_session *psessionEntry)
|
||||||
{
|
{
|
||||||
|
|
||||||
uint8_t *pBuf;
|
uint8_t *pBuf;
|
||||||
@@ -788,7 +788,7 @@ lim_send_sme_disassoc_ntf(tpAniSirGlobal mac,
|
|||||||
tSirSmeDisassocInd *pSirSmeDisassocInd;
|
tSirSmeDisassocInd *pSirSmeDisassocInd;
|
||||||
uint32_t *pMsg = NULL;
|
uint32_t *pMsg = NULL;
|
||||||
bool failure = false;
|
bool failure = false;
|
||||||
tpPESession session = NULL;
|
struct pe_session *session = NULL;
|
||||||
uint16_t i, assoc_id;
|
uint16_t i, assoc_id;
|
||||||
tpDphHashNode sta_ds = NULL;
|
tpDphHashNode sta_ds = NULL;
|
||||||
QDF_STATUS status;
|
QDF_STATUS status;
|
||||||
@@ -956,7 +956,7 @@ error:
|
|||||||
----------------------------------------------------------------- */
|
----------------------------------------------------------------- */
|
||||||
void
|
void
|
||||||
lim_send_sme_disassoc_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
lim_send_sme_disassoc_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
||||||
tpPESession psessionEntry)
|
struct pe_session *psessionEntry)
|
||||||
{
|
{
|
||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
tSirSmeDisassocInd *pSirSmeDisassocInd;
|
tSirSmeDisassocInd *pSirSmeDisassocInd;
|
||||||
@@ -1010,7 +1010,7 @@ lim_send_sme_disassoc_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
|||||||
----------------------------------------------------------------- */
|
----------------------------------------------------------------- */
|
||||||
void
|
void
|
||||||
lim_send_sme_deauth_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
lim_send_sme_deauth_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
||||||
tpPESession psessionEntry)
|
struct pe_session *psessionEntry)
|
||||||
{
|
{
|
||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
tSirSmeDeauthInd *pSirSmeDeauthInd;
|
tSirSmeDeauthInd *pSirSmeDeauthInd;
|
||||||
@@ -1081,7 +1081,7 @@ lim_send_sme_deauth_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
|||||||
*/
|
*/
|
||||||
void
|
void
|
||||||
lim_send_sme_tdls_del_sta_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
lim_send_sme_tdls_del_sta_ind(tpAniSirGlobal mac, tpDphHashNode pStaDs,
|
||||||
tpPESession psessionEntry, uint16_t reasonCode)
|
struct pe_session *psessionEntry, uint16_t reasonCode)
|
||||||
{
|
{
|
||||||
struct tdls_event_info info;
|
struct tdls_event_info info;
|
||||||
|
|
||||||
@@ -1225,7 +1225,7 @@ lim_send_sme_deauth_ntf(tpAniSirGlobal mac, tSirMacAddr peerMacAddr,
|
|||||||
uint8_t *pBuf;
|
uint8_t *pBuf;
|
||||||
tSirSmeDeauthRsp *pSirSmeDeauthRsp;
|
tSirSmeDeauthRsp *pSirSmeDeauthRsp;
|
||||||
tSirSmeDeauthInd *pSirSmeDeauthInd;
|
tSirSmeDeauthInd *pSirSmeDeauthInd;
|
||||||
tpPESession psessionEntry;
|
struct pe_session *psessionEntry;
|
||||||
uint8_t sessionId;
|
uint8_t sessionId;
|
||||||
uint32_t *pMsg = NULL;
|
uint32_t *pMsg = NULL;
|
||||||
QDF_STATUS status;
|
QDF_STATUS status;
|
||||||
@@ -1424,7 +1424,7 @@ void
|
|||||||
lim_send_sme_set_context_rsp(tpAniSirGlobal mac,
|
lim_send_sme_set_context_rsp(tpAniSirGlobal mac,
|
||||||
struct qdf_mac_addr peer_macaddr, uint16_t aid,
|
struct qdf_mac_addr peer_macaddr, uint16_t aid,
|
||||||
tSirResultCodes resultCode,
|
tSirResultCodes resultCode,
|
||||||
tpPESession psessionEntry, uint8_t smesessionId,
|
struct pe_session *psessionEntry, uint8_t smesessionId,
|
||||||
uint16_t smetransactionId)
|
uint16_t smetransactionId)
|
||||||
{
|
{
|
||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
@@ -1475,7 +1475,7 @@ lim_send_sme_set_context_rsp(tpAniSirGlobal mac,
|
|||||||
----------------------------------------------------------------- */
|
----------------------------------------------------------------- */
|
||||||
void
|
void
|
||||||
lim_send_sme_addts_rsp(tpAniSirGlobal mac, uint8_t rspReqd, uint32_t status,
|
lim_send_sme_addts_rsp(tpAniSirGlobal mac, uint8_t rspReqd, uint32_t status,
|
||||||
tpPESession psessionEntry, tSirMacTspecIE tspec,
|
struct pe_session *psessionEntry, tSirMacTspecIE tspec,
|
||||||
uint8_t smesessionId, uint16_t smetransactionId)
|
uint8_t smesessionId, uint16_t smetransactionId)
|
||||||
{
|
{
|
||||||
tpSirAddtsRsp rsp;
|
tpSirAddtsRsp rsp;
|
||||||
@@ -1517,7 +1517,7 @@ lim_send_sme_addts_rsp(tpAniSirGlobal mac, uint8_t rspReqd, uint32_t status,
|
|||||||
|
|
||||||
void
|
void
|
||||||
lim_send_sme_delts_rsp(tpAniSirGlobal mac, tpSirDeltsReq delts, uint32_t status,
|
lim_send_sme_delts_rsp(tpAniSirGlobal mac, tpSirDeltsReq delts, uint32_t status,
|
||||||
tpPESession psessionEntry, uint8_t smesessionId,
|
struct pe_session *psessionEntry, uint8_t smesessionId,
|
||||||
uint16_t smetransactionId)
|
uint16_t smetransactionId)
|
||||||
{
|
{
|
||||||
tpSirDeltsRsp rsp;
|
tpSirDeltsRsp rsp;
|
||||||
@@ -1569,7 +1569,7 @@ lim_send_sme_delts_rsp(tpAniSirGlobal mac, tpSirDeltsReq delts, uint32_t status,
|
|||||||
|
|
||||||
void
|
void
|
||||||
lim_send_sme_delts_ind(tpAniSirGlobal mac, tpSirDeltsReqInfo delts, uint16_t aid,
|
lim_send_sme_delts_ind(tpAniSirGlobal mac, tpSirDeltsReqInfo delts, uint16_t aid,
|
||||||
tpPESession psessionEntry)
|
struct pe_session *psessionEntry)
|
||||||
{
|
{
|
||||||
tpSirDeltsRsp rsp;
|
tpSirDeltsRsp rsp;
|
||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
@@ -1636,7 +1636,7 @@ lim_send_sme_pe_statistics_rsp(tpAniSirGlobal mac, uint16_t msgType, void *stats
|
|||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
uint8_t sessionId;
|
uint8_t sessionId;
|
||||||
tAniGetPEStatsRsp *pPeStats = (tAniGetPEStatsRsp *) stats;
|
tAniGetPEStatsRsp *pPeStats = (tAniGetPEStatsRsp *) stats;
|
||||||
tpPESession pPeSessionEntry;
|
struct pe_session *pPeSessionEntry;
|
||||||
|
|
||||||
/* Get the Session Id based on Sta Id */
|
/* Get the Session Id based on Sta Id */
|
||||||
pPeSessionEntry =
|
pPeSessionEntry =
|
||||||
@@ -1681,7 +1681,7 @@ void lim_send_sme_pe_ese_tsm_rsp(tpAniSirGlobal mac,
|
|||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
uint8_t sessionId;
|
uint8_t sessionId;
|
||||||
tAniGetTsmStatsRsp *pPeStats = (tAniGetTsmStatsRsp *) pStats;
|
tAniGetTsmStatsRsp *pPeStats = (tAniGetTsmStatsRsp *) pStats;
|
||||||
tpPESession pPeSessionEntry = NULL;
|
struct pe_session *pPeSessionEntry = NULL;
|
||||||
|
|
||||||
/* Get the Session Id based on Sta Id */
|
/* Get the Session Id based on Sta Id */
|
||||||
pPeSessionEntry =
|
pPeSessionEntry =
|
||||||
@@ -1762,7 +1762,7 @@ lim_send_sme_ibss_peer_ind(tpAniSirGlobal mac,
|
|||||||
static QDF_STATUS lim_process_csa_wbw_ie(tpAniSirGlobal mac_ctx,
|
static QDF_STATUS lim_process_csa_wbw_ie(tpAniSirGlobal mac_ctx,
|
||||||
struct csa_offload_params *csa_params,
|
struct csa_offload_params *csa_params,
|
||||||
tLimWiderBWChannelSwitchInfo *chnl_switch_info,
|
tLimWiderBWChannelSwitchInfo *chnl_switch_info,
|
||||||
tpPESession session_entry)
|
struct pe_session *session_entry)
|
||||||
{
|
{
|
||||||
struct ch_params ch_params = {0};
|
struct ch_params ch_params = {0};
|
||||||
uint8_t ap_new_ch_width;
|
uint8_t ap_new_ch_width;
|
||||||
@@ -1894,7 +1894,7 @@ prnt_log:
|
|||||||
void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx,
|
void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx,
|
||||||
struct scheduler_msg *msg)
|
struct scheduler_msg *msg)
|
||||||
{
|
{
|
||||||
tpPESession session_entry;
|
struct pe_session *session_entry;
|
||||||
struct scheduler_msg mmh_msg = {0};
|
struct scheduler_msg mmh_msg = {0};
|
||||||
struct csa_offload_params *csa_params =
|
struct csa_offload_params *csa_params =
|
||||||
(struct csa_offload_params *) (msg->bodyptr);
|
(struct csa_offload_params *) (msg->bodyptr);
|
||||||
@@ -2166,7 +2166,7 @@ err:
|
|||||||
|
|
||||||
void lim_handle_delete_bss_rsp(tpAniSirGlobal mac, struct scheduler_msg *MsgQ)
|
void lim_handle_delete_bss_rsp(tpAniSirGlobal mac, struct scheduler_msg *MsgQ)
|
||||||
{
|
{
|
||||||
tpPESession psessionEntry;
|
struct pe_session *psessionEntry;
|
||||||
tpDeleteBssParams pDelBss = (tpDeleteBssParams) (MsgQ->bodyptr);
|
tpDeleteBssParams pDelBss = (tpDeleteBssParams) (MsgQ->bodyptr);
|
||||||
|
|
||||||
psessionEntry =
|
psessionEntry =
|
||||||
@@ -2262,7 +2262,7 @@ void lim_send_sme_max_assoc_exceeded_ntf(tpAniSirGlobal mac, tSirMacAddr peerMac
|
|||||||
--------------------------------------------------------------------*/
|
--------------------------------------------------------------------*/
|
||||||
void
|
void
|
||||||
lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal mac,
|
lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal mac,
|
||||||
tpPESession psessionEntry,
|
struct pe_session *psessionEntry,
|
||||||
tpSwitchChannelParams pChnlParams)
|
tpSwitchChannelParams pChnlParams)
|
||||||
{
|
{
|
||||||
struct scheduler_msg mmhMsg = {0};
|
struct scheduler_msg mmhMsg = {0};
|
||||||
@@ -2343,7 +2343,7 @@ lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal mac,
|
|||||||
*/
|
*/
|
||||||
static void
|
static void
|
||||||
lim_send_bss_color_change_ie_update(tpAniSirGlobal mac_ctx,
|
lim_send_bss_color_change_ie_update(tpAniSirGlobal mac_ctx,
|
||||||
tpPESession session)
|
struct pe_session *session)
|
||||||
{
|
{
|
||||||
/* Update the beacon template and send to FW */
|
/* Update the beacon template and send to FW */
|
||||||
if (sch_set_fixed_beacon_fields(mac_ctx, session) != QDF_STATUS_SUCCESS) {
|
if (sch_set_fixed_beacon_fields(mac_ctx, session) != QDF_STATUS_SUCCESS) {
|
||||||
@@ -2359,7 +2359,7 @@ lim_send_bss_color_change_ie_update(tpAniSirGlobal mac_ctx,
|
|||||||
|
|
||||||
static void
|
static void
|
||||||
lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
|
lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
|
||||||
tpPESession session)
|
struct pe_session *session)
|
||||||
{
|
{
|
||||||
tUpdateBeaconParams beacon_params;
|
tUpdateBeaconParams beacon_params;
|
||||||
|
|
||||||
@@ -2396,7 +2396,7 @@ lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
|
|||||||
#else
|
#else
|
||||||
static void
|
static void
|
||||||
lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
|
lim_handle_bss_color_change_ie(tpAniSirGlobal mac_ctx,
|
||||||
tpPESession session)
|
struct pe_session *session)
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
@@ -2405,7 +2405,7 @@ void
|
|||||||
lim_process_beacon_tx_success_ind(tpAniSirGlobal mac_ctx, uint16_t msgType,
|
lim_process_beacon_tx_success_ind(tpAniSirGlobal mac_ctx, uint16_t msgType,
|
||||||
void *event)
|
void *event)
|
||||||
{
|
{
|
||||||
tpPESession session;
|
struct pe_session *session;
|
||||||
tpSirFirstBeaconTxCompleteInd bcn_ind =
|
tpSirFirstBeaconTxCompleteInd bcn_ind =
|
||||||
(tSirFirstBeaconTxCompleteInd *) event;
|
(tSirFirstBeaconTxCompleteInd *) event;
|
||||||
|
|
||||||
|
@@ -41,9 +41,9 @@ void lim_send_sme_roc_rsp(tpAniSirGlobal mac_ctx, uint16_t msg_type,
|
|||||||
tSirResultCodes result_code, uint8_t sme_session_id,
|
tSirResultCodes result_code, uint8_t sme_session_id,
|
||||||
uint32_t scan_id);
|
uint32_t scan_id);
|
||||||
void lim_send_sme_start_bss_rsp(tpAniSirGlobal, uint16_t, tSirResultCodes,
|
void lim_send_sme_start_bss_rsp(tpAniSirGlobal, uint16_t, tSirResultCodes,
|
||||||
tpPESession, uint8_t, uint16_t);
|
struct pe_session *, uint8_t, uint16_t);
|
||||||
void lim_send_sme_join_reassoc_rsp(tpAniSirGlobal, uint16_t, tSirResultCodes,
|
void lim_send_sme_join_reassoc_rsp(tpAniSirGlobal, uint16_t, tSirResultCodes,
|
||||||
uint16_t, tpPESession, uint8_t, uint16_t);
|
uint16_t, struct pe_session *, uint8_t, uint16_t);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* lim_prepare_disconnect_done_ind() - Prepares the disconnect done ind message
|
* lim_prepare_disconnect_done_ind() - Prepares the disconnect done ind message
|
||||||
@@ -62,16 +62,16 @@ QDF_STATUS lim_prepare_disconnect_done_ind(tpAniSirGlobal mac_ctx,
|
|||||||
tSirResultCodes reason_code,
|
tSirResultCodes reason_code,
|
||||||
uint8_t *peer_mac_addr);
|
uint8_t *peer_mac_addr);
|
||||||
void lim_send_sme_disassoc_ntf(tpAniSirGlobal, tSirMacAddr, tSirResultCodes,
|
void lim_send_sme_disassoc_ntf(tpAniSirGlobal, tSirMacAddr, tSirResultCodes,
|
||||||
uint16_t, uint16_t, uint8_t, uint16_t, tpPESession);
|
uint16_t, uint16_t, uint8_t, uint16_t, struct pe_session *);
|
||||||
void lim_send_sme_deauth_ntf(tpAniSirGlobal, tSirMacAddr, tSirResultCodes, uint16_t,
|
void lim_send_sme_deauth_ntf(tpAniSirGlobal, tSirMacAddr, tSirResultCodes, uint16_t,
|
||||||
uint16_t, uint8_t, uint16_t);
|
uint16_t, uint8_t, uint16_t);
|
||||||
void lim_send_sme_disassoc_ind(tpAniSirGlobal, tpDphHashNode, tpPESession);
|
void lim_send_sme_disassoc_ind(tpAniSirGlobal, tpDphHashNode, struct pe_session *);
|
||||||
void lim_send_sme_deauth_ind(tpAniSirGlobal, tpDphHashNode,
|
void lim_send_sme_deauth_ind(tpAniSirGlobal, tpDphHashNode,
|
||||||
tpPESession psessionEntry);
|
struct pe_session *psessionEntry);
|
||||||
void lim_send_sme_wm_status_change_ntf(tpAniSirGlobal, tSirSmeStatusChangeCode,
|
void lim_send_sme_wm_status_change_ntf(tpAniSirGlobal, tSirSmeStatusChangeCode,
|
||||||
uint32_t *, uint16_t, uint8_t);
|
uint32_t *, uint16_t, uint8_t);
|
||||||
void lim_send_sme_set_context_rsp(tpAniSirGlobal, struct qdf_mac_addr, uint16_t,
|
void lim_send_sme_set_context_rsp(tpAniSirGlobal, struct qdf_mac_addr, uint16_t,
|
||||||
tSirResultCodes, tpPESession, uint8_t, uint16_t);
|
tSirResultCodes, struct pe_session *, uint8_t, uint16_t);
|
||||||
void lim_handle_delete_bss_rsp(tpAniSirGlobal mac, struct scheduler_msg *MsgQ);
|
void lim_handle_delete_bss_rsp(tpAniSirGlobal mac, struct scheduler_msg *MsgQ);
|
||||||
void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx,
|
void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx,
|
||||||
struct scheduler_msg *msg);
|
struct scheduler_msg *msg);
|
||||||
@@ -81,13 +81,13 @@ lim_send_sme_aggr_qos_rsp(tpAniSirGlobal mac, tpSirAggrQosRsp aggrQosRsp,
|
|||||||
uint8_t smesessionId);
|
uint8_t smesessionId);
|
||||||
|
|
||||||
void lim_send_sme_addts_rsp(tpAniSirGlobal mac, uint8_t rspReqd, uint32_t status,
|
void lim_send_sme_addts_rsp(tpAniSirGlobal mac, uint8_t rspReqd, uint32_t status,
|
||||||
tpPESession psessionEntry, tSirMacTspecIE tspec,
|
struct pe_session *psessionEntry, tSirMacTspecIE tspec,
|
||||||
uint8_t smesessionId, uint16_t smetransactionId);
|
uint8_t smesessionId, uint16_t smetransactionId);
|
||||||
void lim_send_sme_delts_rsp(tpAniSirGlobal mac, tpSirDeltsReq delts,
|
void lim_send_sme_delts_rsp(tpAniSirGlobal mac, tpSirDeltsReq delts,
|
||||||
uint32_t status, tpPESession psessionEntry,
|
uint32_t status, struct pe_session *psessionEntry,
|
||||||
uint8_t smessionId, uint16_t smetransactionId);
|
uint8_t smessionId, uint16_t smetransactionId);
|
||||||
void lim_send_sme_delts_ind(tpAniSirGlobal mac, tpSirDeltsReqInfo delts,
|
void lim_send_sme_delts_ind(tpAniSirGlobal mac, tpSirDeltsReqInfo delts,
|
||||||
uint16_t aid, tpPESession);
|
uint16_t aid, struct pe_session *);
|
||||||
void lim_send_sme_stats_rsp(tpAniSirGlobal mac, uint16_t msgtype, void *stats);
|
void lim_send_sme_stats_rsp(tpAniSirGlobal mac, uint16_t msgtype, void *stats);
|
||||||
|
|
||||||
#ifdef QCA_SUPPORT_CP_STATS
|
#ifdef QCA_SUPPORT_CP_STATS
|
||||||
@@ -110,7 +110,7 @@ void lim_send_sme_max_assoc_exceeded_ntf(tpAniSirGlobal mac, tSirMacAddr peerMac
|
|||||||
uint8_t smesessionId);
|
uint8_t smesessionId);
|
||||||
|
|
||||||
void lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal mac,
|
void lim_send_sme_ap_channel_switch_resp(tpAniSirGlobal mac,
|
||||||
tpPESession psessionEntry,
|
struct pe_session *psessionEntry,
|
||||||
tpSwitchChannelParams pChnlParams);
|
tpSwitchChannelParams pChnlParams);
|
||||||
/*
|
/*
|
||||||
* lim_process_beacon_tx_success_ind() - handle successful beacon transmission
|
* lim_process_beacon_tx_success_ind() - handle successful beacon transmission
|
||||||
|
Reference in New Issue
Block a user