qcacld-3.0: Replace DEBUG macro with WLAN_DEBUG

This is a qcacld-2.0 to qcacld-3.0 propagation.

pr_debug() should not appear by default in kernel log (kmsg).
DEBUG is a kernel macro, since host driver is using the same name macro,
pr_debug log statements are appearing in kmsg.

Fix this by moving the code under DEBUG to WLAN_DEBUG and
remove DEBUG macro from Kbuild.

Change-Id: I5bb385f91f9b6ba15629a5878625fefc21d4a7e1
CRs-Fixed: 1003261
This commit is contained in:
Srinivas Girigowda
2016-10-18 12:26:15 -07:00
committed by qcabuildsw
parent 90cdd3cda2
commit 6147c58dff
9 changed files with 15 additions and 16 deletions

View File

@@ -527,7 +527,7 @@ void ramdump_work_handler(void *data)
}
tgt_info = hif_get_target_info_handle(ramdump_scn);
target_type = tgt_info->target_type;
#ifdef DEBUG
#ifdef WLAN_DEBUG
ret = hif_check_soc_status(ramdump_scn);
if (ret)
goto out_fail;