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:
Nirav Shah
2019-02-20 10:34:28 +05:30
committed by nshrivas
parent 74d5915a1f
commit f359dd2770

View File

@@ -2589,20 +2589,27 @@ QDF_STATUS lim_send_deauth_cnf(struct mac_context *mac_ctx)
deauth_req->deauthTrigger);
lim_ft_cleanup(mac_ctx, session_entry);
} else {
pe_debug("No FT Preauth Session Cleanup in role %d"
#ifdef FEATURE_WLAN_ESE
pe_debug("No FT Preauth Session Cleanup in role %d"
" isESE %d"
#endif
" isLFR %d"
" is11r %d, Deauth reason %d Trigger = %d",
session_entry->limSystemRole,
#ifdef FEATURE_WLAN_ESE
session_entry->isESEconnection,
#endif
session_entry->isFastRoamIniFeatureEnabled,
session_entry->is11Rconnection,
deauth_req->reasonCode,
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 */
qdf_mem_free(deauth_req);