From fc8feea9092ea8931d56bc84f6f55d0a6614d6e2 Mon Sep 17 00:00:00 2001 From: Kiran Kumar Lokere Date: Thu, 27 Oct 2016 17:07:00 -0700 Subject: 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) --- core/mac/src/pe/lim/lim_send_sme_rsp_messages.c | 13 +++++++++++-- 1 file 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; -- cgit v1.2.3