qcacld-3.0: Fix to call NDP session end handler only if the mode is NDI

NDP session end handler is being invoked, whenever a session is being
ended irrespective of the mode of the session.

Add a check to call the ndp session end handler only if the adapter
mode is NDI.

Change-Id: Iade4de486ede375239a66517fd47d1eb4501b517
CRs-Fixed: 1060808
This commit is contained in:
Rakesh Sunki
2016-08-29 17:29:53 -07:00
committed by Gerrit - the friendly Code Review server
parent b0f314063e
commit 3480f96cd8
2 changed files with 2 additions and 7 deletions

View File

@@ -2498,6 +2498,7 @@ QDF_STATUS hdd_sme_close_session_callback(void *pContext)
* For NAN Data interface, the close session results in the final
* indication to the userspace
*/
if (adapter->device_mode == QDF_NDI_MODE)
hdd_ndp_session_end_handler(adapter);
clear_bit(SME_SESSION_OPENED, &adapter->event_flags);

View File

@@ -900,12 +900,6 @@ void hdd_ndp_session_end_handler(hdd_adapter_t *adapter)
if (wlan_hdd_validate_context(hdd_ctx))
return;
/* Handle only if adapter is in NDI mode */
if (QDF_NDI_MODE != adapter->device_mode) {
hdd_err("Adapter is not in NDI mode");
return;
}
ndp_ctx = WLAN_HDD_GET_NDP_CTX_PTR(adapter);
if (!ndp_ctx) {
hdd_err("ndp context is NULL");