diff options
| author | Kiran Kumar Lokere <klokere@codeaurora.org> | 2016-10-27 17:07:00 -0700 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2016-10-29 17:19:08 -0700 |
| commit | fc8feea9092ea8931d56bc84f6f55d0a6614d6e2 (patch) | |
| tree | 02b786ad4e9c288d7dd68518beb008966723115c | |
| parent | 82fbd7c8b4a362481d85efa561729a0e2bc36c38 (diff) | |
qcacld-3.0: Fix -Wmissing-prototypes in lim_process_csa_wbw_ie
Fix -Wmissing-prototypes in lim_process_csa_wbw_ie
Change-Id: Ia2f874e4146f331c98d90eadca8f4f0eceddf821
CRs-Fixed: 1075090
(cherry picked from commit b8b3671a8f83104630619beac170d02803b98134)
| -rw-r--r-- | core/mac/src/pe/lim/lim_send_sme_rsp_messages.c | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c index b5094115ff18..4eae32115abf 100644 --- a/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c +++ b/core/mac/src/pe/lim/lim_send_sme_rsp_messages.c @@ -1962,7 +1962,16 @@ lim_send_sme_ibss_peer_ind(tpAniSirGlobal pMac, } -void lim_process_csa_wdw_ie(tpAniSirGlobal mac_ctx, +/** + * lim_process_csa_wbw_ie() - Process CSA Wide BW IE + * @mac_ctx: pointer to global adapter context + * @csa_params: pointer to CSA parameters + * @chnl_switch_info:pointer to channel switch parameters + * @session_entry: session pointer + * + * Return: None + */ +static void lim_process_csa_wbw_ie(tpAniSirGlobal mac_ctx, struct csa_offload_params *csa_params, tLimWiderBWChannelSwitchInfo *chnl_switch_info, tpPESession session_entry) @@ -2117,7 +2126,7 @@ void lim_handle_csa_offload_msg(tpAniSirGlobal mac_ctx, tpSirMsgQ msg) if (session_entry->vhtCapability && session_entry->htSupportedChannelWidthSet) { if (csa_params->ies_present_flag & lim_wbw_ie_present) { - lim_process_csa_wdw_ie(mac_ctx, csa_params, + lim_process_csa_wbw_ie(mac_ctx, csa_params, chnl_switch_info, session_entry); lim_ch_switch->sec_ch_offset = csa_params->sec_chan_offset; |
