qcacld-3.0: Avoid using ifdef for print arguments
Avoid using ifdef for print arguments. Change-Id: Iea2b60189d2aa7ba8108fc5f1f04802e5403efeb CRs-Fixed: 2401654
This commit is contained in:
@@ -2589,20 +2589,27 @@ QDF_STATUS lim_send_deauth_cnf(struct mac_context *mac_ctx)
|
|||||||
deauth_req->deauthTrigger);
|
deauth_req->deauthTrigger);
|
||||||
lim_ft_cleanup(mac_ctx, session_entry);
|
lim_ft_cleanup(mac_ctx, session_entry);
|
||||||
} else {
|
} else {
|
||||||
pe_debug("No FT Preauth Session Cleanup in role %d"
|
|
||||||
#ifdef FEATURE_WLAN_ESE
|
#ifdef FEATURE_WLAN_ESE
|
||||||
|
pe_debug("No FT Preauth Session Cleanup in role %d"
|
||||||
" isESE %d"
|
" isESE %d"
|
||||||
#endif
|
|
||||||
" isLFR %d"
|
" isLFR %d"
|
||||||
" is11r %d, Deauth reason %d Trigger = %d",
|
" is11r %d, Deauth reason %d Trigger = %d",
|
||||||
session_entry->limSystemRole,
|
session_entry->limSystemRole,
|
||||||
#ifdef FEATURE_WLAN_ESE
|
|
||||||
session_entry->isESEconnection,
|
session_entry->isESEconnection,
|
||||||
#endif
|
|
||||||
session_entry->isFastRoamIniFeatureEnabled,
|
session_entry->isFastRoamIniFeatureEnabled,
|
||||||
session_entry->is11Rconnection,
|
session_entry->is11Rconnection,
|
||||||
deauth_req->reasonCode,
|
deauth_req->reasonCode,
|
||||||
deauth_req->deauthTrigger);
|
deauth_req->deauthTrigger);
|
||||||
|
#else
|
||||||
|
pe_debug("No FT Preauth Session Cleanup in role %d"
|
||||||
|
" isLFR %d"
|
||||||
|
" is11r %d, Deauth reason %d Trigger = %d",
|
||||||
|
session_entry->limSystemRole,
|
||||||
|
session_entry->isFastRoamIniFeatureEnabled,
|
||||||
|
session_entry->is11Rconnection,
|
||||||
|
deauth_req->reasonCode,
|
||||||
|
deauth_req->deauthTrigger);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
/* Free up buffer allocated for mlmDeauthReq */
|
/* Free up buffer allocated for mlmDeauthReq */
|
||||||
qdf_mem_free(deauth_req);
|
qdf_mem_free(deauth_req);
|
||||||
|
Reference in New Issue
Block a user