Browse Source

qcacld-3.0: Cleanup FISA debug macro

FISA debug macro is leading to unnecessary additional functional calls,
to avoid this cleaning up macro and pointing to nop when disabled.

Change-Id: I21ebd64f61e2c31736d55e2d17f588dbddbc15c7
CRs-Fixed: 2869361
Karthik Kantamneni 4 years ago
parent
commit
795d9dfab2
1 changed files with 1 additions and 1 deletions
  1. 1 1
      core/dp/txrx3.0/dp_fisa_rx.h

+ 1 - 1
core/dp/txrx3.0/dp_fisa_rx.h

@@ -22,7 +22,7 @@
 #ifdef FISA_DEBUG_ENABLE
 #define dp_fisa_debug dp_info
 #else
-#define dp_fisa_debug dp_debug
+#define dp_fisa_debug(params...)
 #endif
 
 #if defined(WLAN_SUPPORT_RX_FISA)