diff options
| author | Kalikinkar dhara <c_kaliki@qca.qualcomm.com> | 2014-04-01 15:08:21 -0700 |
|---|---|---|
| committer | Akash Patel <c_akashp@qca.qualcomm.com> | 2014-04-02 12:48:01 -0700 |
| commit | 736a1d942744aee09afa087dbe156ae2e375c8ef (patch) | |
| tree | 603fc42a5ff5e2f469c67e1783d2779cad949520 | |
| parent | 5e4f386d66859f217c4ee2de4ff58bb103376ec6 (diff) | |
qcacld: wlan: Exclude change for age out probe requests.
Excluding the support for age out probe request from
qcacld.
Function call "limAgeOutProbeReq()" and the function
definition under QCA_WIFI_ISOC
Change-Id: If512c5b778d0365b443c566c5994147d2fd621b1
CRs-Fixed: 641934
| -rw-r--r-- | CORE/MAC/src/pe/lim/limProcessMessageQueue.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/CORE/MAC/src/pe/lim/limProcessMessageQueue.c b/CORE/MAC/src/pe/lim/limProcessMessageQueue.c index eff3ee265da4..5b333459e1a3 100644 --- a/CORE/MAC/src/pe/lim/limProcessMessageQueue.c +++ b/CORE/MAC/src/pe/lim/limProcessMessageQueue.c @@ -78,9 +78,10 @@ #include "vos_packet.h" #include "vos_memory.h" +#ifdef QCA_WIFI_ISOC /* This value corresponds to 500 ms */ #define MAX_PROBEREQ_TIME 5000 - +#endif void limLogSessionStates(tpAniSirGlobal pMac); /** ------------------------------------------------------------- @@ -1055,7 +1056,7 @@ void limProcessOemDataRsp(tpAniSirGlobal pMac, tANI_U32* body) } #endif - +#ifdef QCA_WIFI_ISOC static tANI_BOOLEAN limAgeOutProbeReq( tpAniSirGlobal pMac, tpSirMsgQ limMsg, vos_pkt_t *pVosPkt ) { @@ -1083,7 +1084,7 @@ static tANI_BOOLEAN limAgeOutProbeReq( tpAniSirGlobal pMac, tpSirMsgQ limMsg, return match; } - +#endif /** * limProcessMessages @@ -1244,7 +1245,7 @@ limProcessMessages(tpAniSirGlobal pMac, tpSirMsgQ limMsg) break; } - +#ifdef QCA_WIFI_ISOC /* * putting a check for age out probe request frames * such that any probe req more than 0.5 sec old can directly @@ -1255,7 +1256,7 @@ limProcessMessages(tpAniSirGlobal pMac, tpSirMsgQ limMsg) { break; } - +#endif #ifdef FEATURE_WLAN_TDLS_INTERNAL /* * TDLS frames comes as translated frames as well as |
