From 73aec072053bfd58b67fdcf5bb6f1b82d86ab719 Mon Sep 17 00:00:00 2001 From: Jeff Johnson Date: Fri, 4 Nov 2016 07:54:41 -0700 Subject: qcacld-3.0: Properly import lim_get_htcb_state() Currently in lim_process_tdls.c there is a local prototype for function lim_get_htcb_state(). Having a local prototype prevents the compiler from verifying that the prototype matches the actual implementation. Update the file to remove the local prototype and to instead import the header file that defines the lim_get_htcb_state() prototype. In addition remove the local prototype for lim_populate_vht_mcs_set() since the appropriate header file is already being included. Change-Id: Ie9931f972a3126fdc08c54f497aa46ef91d746cd CRs-Fixed: 1085760 --- core/mac/src/pe/lim/lim_process_tdls.c | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/core/mac/src/pe/lim/lim_process_tdls.c b/core/mac/src/pe/lim/lim_process_tdls.c index 6c16ae4b4dbb..c020a253e9cf 100644 --- a/core/mac/src/pe/lim/lim_process_tdls.c +++ b/core/mac/src/pe/lim/lim_process_tdls.c @@ -73,6 +73,7 @@ #include "lim_send_messages.h" #include "utils_parser.h" #include "lim_assoc_utils.h" +#include "lim_prop_exts_utils.h" #include "dph_hash_table.h" #include "wma_types.h" #include "cds_regdomain.h" @@ -104,12 +105,6 @@ void populate_dot11f_tdls_offchannel_params(tpAniSirGlobal pMac, tDot11fIESuppOperatingClasses * suppOperClasses); void lim_log_vht_cap(tpAniSirGlobal pMac, tDot11fIEVHTCaps *pDot11f); -tSirRetStatus lim_populate_vht_mcs_set(tpAniSirGlobal pMac, - tpSirSupportedRates pRates, - tDot11fIEVHTCaps *pPeerVHTCaps, - tpPESession psessionEntry, - uint8_t nss); -ePhyChanBondState lim_get_htcb_state(ePhyChanBondState aniCBMode); /* * TDLS data frames will go out/come in as non-qos data. -- cgit v1.2.3